8 lines
153 B
Text
Executable file
8 lines
153 B
Text
Executable file
# Run within root directory
|
|
|
|
if [ $1 = "html" ]; then
|
|
coverage run -m pytest && coverage html
|
|
else
|
|
coverage run -m pytest && coverage report
|
|
fi
|
|
|