This commit is contained in:
jbannon
2022-04-29 08:08:58 +00:00
parent 5b40ae49f3
commit 761a42e580
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# Run within root directory
if [ $1 = "check" ]; then
if [[ $1 = "check" ]]; then
isort . --check-only --diff \
&& black . --check \
&& pylint src/ \

View File

@@ -1,6 +1,6 @@
# Run within root directory
if [ $1 = "html" ]; then
if [[ $1 = "html" ]]; then
coverage run -m pytest && coverage html
else
coverage run -m pytest && coverage report