Commit 565bff4a authored by Bogdan's avatar Bogdan

created venv for testing.py bugfix

parent e99eeb19
...@@ -101,10 +101,10 @@ for path in microservice_coverage_paths_set: ...@@ -101,10 +101,10 @@ for path in microservice_coverage_paths_set:
print(e) print(e)
continue continue
try: try:
coverage_xml_path = os.path.normpah( str(REPORTS) + '/coverage.xml') coverage_xml_path = os.path.normpath( str(REPORTS) + '/coverage.xml')
os.remove(coverage_xml_path) os.remove(coverage_xml_path)
coverage_html_path = os.path.normpah( str(REPORTS) + '/htmlcov' ) coverage_html_path = os.path.normpath( str(REPORTS) + '/htmlcov' )
os.rmdir(coverage_html_path) os.rmdir(coverage_html_path)
except Exception as e: except Exception as e:
print(e) print(e)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment