harbor/tests/apitests/python/library/Harbor.py
Wenkai Yin f71f02deee Fix module not found error in API test (#5647)
Reload the python path to fix the module not found error in API E2E test

Signed-off-by: Wenkai Yin <yinw@vmware.com>
2018-08-17 10:55:19 +08:00

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