Skip to content

Commit 0a47f9a

Browse files
committed
pytest: restore dist=loadfile
1 parent e9d50fc commit 0a47f9a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ diff-cover.html: coverage.xml
148148

149149
## test : run the ${MODULE} test suite
150150
test: $(pysources)
151-
python setup.py test --addopts "-n auto"
151+
python setup.py test --addopts "-n auto --dist=loadfile"
152152

153153
## testcov : run the ${MODULE} test suite and collect coverage
154154
testcov: $(pysources)
155-
python setup.py test --addopts "--cov cwltool -n auto"
155+
python setup.py test --addopts "--cov cwltool -n auto --dist=loadfile"
156156

157157
sloccount.sc: ${PYSOURCES} Makefile
158158
sloccount --duplicates --wide --details $^ > $@

release-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ run_tests() {
1515
mod_loc=$(pip show ${package} |
1616
grep ^Location | awk '{print $2}')/${module}
1717
${test_prefix}bin/py.test "--ignore=${mod_loc}/schemas/" \
18-
--pyarg -x ${module} -n auto
18+
--pyarg -x ${module} -n auto --dist=loadfile
1919
}
2020
pipver=7.0.2 # minimum required version of pip
2121
setuptoolsver=24.2.0 # required to generate correct metadata for

0 commit comments

Comments
 (0)