File tree Expand file tree Collapse file tree 5 files changed +7
-3
lines changed Expand file tree Collapse file tree 5 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
include versioneer.py
2
2
include jupyterhub_traefik_proxy/_version.py
3
+ include requirements.txt
4
+ recursive-include tests *.*
Original file line number Diff line number Diff line change 38
38
"Programming Language :: Python" ,
39
39
"Programming Language :: Python :: 3" ,
40
40
],
41
- packages = find_packages (),
41
+ packages = find_packages (exclude = [ "performance" , "tests" ] ),
42
42
include_package_data = True ,
43
43
entry_points = {
44
44
"jupyterhub.proxies" : [
Original file line number Diff line number Diff line change 13
13
from urllib .parse import urlparse
14
14
15
15
import pytest
16
- import utils
17
16
from certipy import Certipy
18
17
from consul .aio import Consul
19
18
from jupyterhub .utils import exponential_backoff
24
23
from jupyterhub_traefik_proxy .fileprovider import TraefikFileProviderProxy
25
24
from jupyterhub_traefik_proxy .traefik_utils import deep_merge
26
25
26
+ from . import utils
27
+
27
28
HERE = Path (__file__ ).parent .resolve ()
28
29
config_files = HERE / "config_files"
29
30
Original file line number Diff line number Diff line change 14
14
from urllib .parse import quote , urlparse
15
15
16
16
import pytest
17
- import utils
18
17
import websockets
19
18
from jupyterhub .objects import Hub , Server
20
19
from jupyterhub .user import User
23
22
24
23
from jupyterhub_traefik_proxy .proxy import TraefikProxy
25
24
25
+ from . import utils
26
+
26
27
# Mark all tests in this file as slow
27
28
pytestmark = [pytest .mark .slow ]
28
29
You can’t perform that action at this time.
0 commit comments