mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-03 01:00:08 +01:00
f71f02deee
Reload the python path to fix the module not found error in API E2E test Signed-off-by: Wenkai Yin <yinw@vmware.com>
14 lines
281 B
Python
14 lines
281 B
Python
# -*- coding: utf-8 -*-
|
|
import site
|
|
reload(site)
|
|
import project
|
|
import label
|
|
import registry
|
|
import replication
|
|
import repository
|
|
import swagger_client
|
|
|
|
class Harbor(project.Project, label.Label,
|
|
registry.Registry, replication.Replication,
|
|
repository.Repository):
|
|
pass |