File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed
Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -145,11 +145,11 @@ diff-cover.html: coverage.xml
145145
146146# # test : run the cwl-utils test suite
147147test : $(PYSOURCES )
148- python -m pytest -rsx ${PYTEST_EXTRA}
148+ python -m pytest ${PYTEST_EXTRA}
149149
150150# # testcov : run the cwl-utils test suite and collect coverage
151151testcov : $(PYSOURCES )
152- pytest --cov ${PYTEST_EXTRA}
152+ python -m pytest --cov ${PYTEST_EXTRA}
153153
154154sloccount.sc : $(PYSOURCES ) Makefile
155155 sloccount --duplicates --wide --details $^ > $@
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ test = "pytest"
6060
6161[tool .pytest .ini_options ]
6262testpaths = [" tests" ]
63+ addopts = " -rsx -n auto"
6364
6465[tool .setuptools ]
6566packages = [
Original file line number Diff line number Diff line change 11pytest < 9
22pytest-cov
3- pytest-xdist
3+ pytest-xdist[psutil]
44cwlformat
55pytest-mock >= 1.10.0
66jsonschema >= 4.21.1
Original file line number Diff line number Diff line change @@ -9,9 +9,6 @@ envlist =
99isolated_build = True
1010skip_missing_interpreters = True
1111
12- [pytest]
13- addopts =-n auto
14-
1512[gh-actions]
1613python =
1714 3.9: py39
You can’t perform that action at this time.
0 commit comments