From d84ae7377531dbea726fc7a691e2b99277ebc6d4 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 9 Nov 2018 13:00:40 -0200 Subject: [PATCH] Rename filescope to loadfile This makes it consistent with the option (--dist=loadfile) and the other scheduling file (loadscope.py) --- xdist/scheduler/__init__.py | 2 +- xdist/scheduler/{filescope.py => loadfile.py} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename xdist/scheduler/{filescope.py => loadfile.py} (98%) 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