fix useless escape symbol

This commit is contained in:
Beichi-CHs
2021-11-19 00:26:42 +08:00
parent 040fb6fbbd
commit af641dd421
4 changed files with 6 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ print("running flake8...")
if os.system("flake8 --statistics ."):
exit()
ret = os.system('coverage run --include=\"$PWD/*\" manage.py test {module} --settings={setting}'.format(module=test_module, setting=setting))
ret = os.system('coverage run --include="$PWD/*" manage.py test {module} --settings={setting}'.format(module=test_module, setting=setting))
if not ret and is_coverage:
os.system("coverage html && open htmlcov/index.html")