Skip to content
Snippets Groups Projects
Commit b9496100 authored by Mohammad Torkashvand's avatar Mohammad Torkashvand
Browse files

skip coverge percentage cheking in case of $SKIP_ALL_TESTS is 1

parent 3ba2d249
No related branches found
No related tags found
1 merge request!91skip coverge percentage cheking in case of $SKIP_ALL_TESTS is 1
Pipeline #84306 passed
......@@ -32,4 +32,7 @@ commands =
coverage run --source gso --omit="gso/migrations/*" -m pytest {posargs}
coverage xml
coverage html
coverage report --fail-under 80
sh -c "if [ $SKIP_ALL_TESTS -eq 1 ]; then echo 'Skipping coverage report'; else coverage report --fail-under 80; fi"
allowlist_externals =
sh
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment