summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'noxfile.py')
-rw-r--r--noxfile.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/noxfile.py b/noxfile.py
index 941b945..d57980d 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -19,7 +19,9 @@ CLEAN_DIRS = ['dist', 'build', join('docs', '_build'), join('docs', 'modules')]
UNIT_TESTS = join('tests', 'unit')
INTEGRATION_TESTS = join('tests', 'integration')
-COVERAGE_ARGS = '--cov --cov-report=term --cov-report=html' # Generate HTML + stdout coverage report
+COVERAGE_ARGS = (
+ '--cov --cov-report=term --cov-report=html' # Generate HTML + stdout coverage report
+)
XDIST_ARGS = '--numprocesses=auto --dist=loadfile' # Run tests in parallel, grouped by test module