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
145
145
146
146
# # test : run the cwl-utils test suite
147
147
test : $(PYSOURCES )
148
- python -m pytest -rsx ${PYTEST_EXTRA}
148
+ python -m pytest ${PYTEST_EXTRA}
149
149
150
150
# # testcov : run the cwl-utils test suite and collect coverage
151
151
testcov : $(PYSOURCES )
152
- pytest --cov ${PYTEST_EXTRA}
152
+ python -m pytest --cov ${PYTEST_EXTRA}
153
153
154
154
sloccount.sc : $(PYSOURCES ) Makefile
155
155
sloccount --duplicates --wide --details $^ > $@
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ test = "pytest"
60
60
61
61
[tool .pytest .ini_options ]
62
62
testpaths = [" tests" ]
63
+ addopts = " -rsx -n auto"
63
64
64
65
[tool .setuptools ]
65
66
packages = [
Original file line number Diff line number Diff line change 1
1
pytest < 9
2
2
pytest-cov
3
- pytest-xdist
3
+ pytest-xdist[psutil]
4
4
cwlformat
5
5
pytest-mock >= 1.10.0
6
6
jsonschema >= 4.21.1
Original file line number Diff line number Diff line change @@ -9,9 +9,6 @@ envlist =
9
9
isolated_build = True
10
10
skip_missing_interpreters = True
11
11
12
- [pytest]
13
- addopts =-n auto
14
-
15
12
[gh-actions]
16
13
python =
17
14
3.9: py39
You can’t perform that action at this time.
0 commit comments