diff --git a/xdist/scheduler/__init__.py b/xdist/scheduler/__init__.py index 25de7b1..06ba6b7 100644 --- a/xdist/scheduler/__init__.py +++ b/xdist/scheduler/__init__.py @@ -1,4 +1,4 @@ from xdist.scheduler.each import EachScheduling # noqa from xdist.scheduler.load import LoadScheduling # noqa +from xdist.scheduler.loadfile import LoadFileScheduling # noqa from xdist.scheduler.loadscope import LoadScopeScheduling # noqa -from xdist.scheduler.filescope import LoadFileScheduling # noqa diff --git a/xdist/scheduler/filescope.py b/xdist/scheduler/loadfile.py similarity index 98% rename from xdist/scheduler/filescope.py rename to xdist/scheduler/loadfile.py index 4bacde0..52a28b1 100644 --- a/xdist/scheduler/filescope.py +++ b/xdist/scheduler/loadfile.py @@ -1,4 +1,4 @@ -from . import LoadScopeScheduling +from .loadscope import LoadScopeScheduling from py.log import Producer