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 5921ada commit ce48211Copy full SHA for ce48211
Makefile
@@ -27,8 +27,6 @@ test : ## Unit and integration tests execution with coverage and xml reports
27
python -m coverage combine
28
python -m coverage xml -o coverage.xml
29
python -m coverage html -d coverage
30
- mv tests_xml_integ/* tests_xml/
31
- rm -r tests_xml_integ
32
33
.PHONY : ci-clean
34
ci-clean :
tests_runner.py
@@ -33,7 +33,7 @@ def main():
output = 'tests_xml'
xmlrunner.XMLTestRunner(output=output).run(find_unit_tests())
35
elif arg == 'integ':
36
- output = 'tests_xml_integ'
+ output = 'tests_xml'
37
xmlrunner.XMLTestRunner(output=output).run(find_integ_tests())
38
else:
39
# execute without xml reports
0 commit comments