Skip to content

Commit ce48211

Browse files
committed
change output folder
1 parent 5921ada commit ce48211

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ test : ## Unit and integration tests execution with coverage and xml reports
2727
python -m coverage combine
2828
python -m coverage xml -o coverage.xml
2929
python -m coverage html -d coverage
30-
mv tests_xml_integ/* tests_xml/
31-
rm -r tests_xml_integ
3230

3331
.PHONY : ci-clean
3432
ci-clean :

tests_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def main():
3333
output = 'tests_xml'
3434
xmlrunner.XMLTestRunner(output=output).run(find_unit_tests())
3535
elif arg == 'integ':
36-
output = 'tests_xml_integ'
36+
output = 'tests_xml'
3737
xmlrunner.XMLTestRunner(output=output).run(find_integ_tests())
3838
else:
3939
# execute without xml reports

0 commit comments

Comments
 (0)