Skip to content

Commit ebdde07

Browse files
authored
Remove verbosity from unit test commands
1 parent 40d1b87 commit ebdde07

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docker/entrypoint-unit-tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ echo "Unit Tests"
8080
echo "------------------------------------------------------------"
8181

8282
# Removing parallel and shuffle for now to maintain stability
83-
python3 manage.py test unittests -v 3 --keepdb --no-input --exclude-tag="non-parallel" || {
83+
python3 manage.py test unittests --keepdb --no-input --exclude-tag="non-parallel" || {
8484
exit 1;
8585
}
86-
python3 manage.py test unittests -v 3 --keepdb --no-input --tag="non-parallel" || {
86+
python3 manage.py test unittests --keepdb --no-input --tag="non-parallel" || {
8787
exit 1;
88-
}
88+
}

0 commit comments

Comments
 (0)