We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2dc5e0 commit a71f2daCopy full SHA for a71f2da
Makefile
@@ -114,7 +114,7 @@ pylint_report.txt: ${PYSOURCES}
114
diff_pylint_report: pylint_report.txt
115
diff-quality --violations=pylint pylint_report.txt
116
117
-.coverage: tests
+.coverage: testcov
118
119
coverage: .coverage
120
coverage report
@@ -135,7 +135,11 @@ diff-cover.html: coverage-gcovr.xml coverage.xml
135
--html-report diff-cover.html
136
137
## test : run the ${MODULE} test suite
138
-test: $(PYSOURCES)
+test: $(pysources)
139
+ python setup.py test
140
+
141
+## testcov : run the ${MODULE} test suite and collect coverage
142
+testcov: $(pysources)
143
python setup.py test --addopts "--cov cwltool"
144
145
sloccount.sc: ${PYSOURCES} Makefile
0 commit comments