diff --git a/Makefile b/Makefile index fb3ba16..5c856fe 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ rebuild: setup makemigrations migrate collectstatic start .PHONY: test test: setup ${VENV_PY_PATH} ${NETBOX_MANAGE_PATH}/manage.py makemigrations ${PLUGIN_NAME} --check - ${VENV_PY_PATH} ${NETBOX_MANAGE_PATH}/manage.py test ${PLUGIN_NAME} + ${VENV_PY_PATH} ${NETBOX_MANAGE_PATH}/manage.py test ${PLUGIN_NAME} -v 2 #relpatch: # $(eval GSTATUS := $(shell git status --porcelain)) diff --git a/test.sh b/test.sh index 5fc2e06..7f16723 100755 --- a/test.sh +++ b/test.sh @@ -17,7 +17,7 @@ doco="docker compose --file docker-compose.yml" test_netbox_unit_tests() { echo "⏱ Running NetBox Unit Tests" $doco run --rm netbox python manage.py makemigrations netbox_acls --check - $doco run --rm netbox python manage.py test netbox_acls + $doco run --rm netbox python manage.py test netbox_acls -v 2 } test_cleanup() {