mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
8 lines
158 B
Bash
Executable File
8 lines
158 B
Bash
Executable File
#!/usr/bin/env bash
|
|
coverage run --source='.' manage.py test
|
|
test_result=$?
|
|
if [ "$test_result" -eq 0 ];then
|
|
coverage html
|
|
open htmlcov/index.html
|
|
fi
|