Skip to content

Commit d70cab5

Browse files
committed
more verbose tests
1 parent 929fc9e commit d70cab5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ rebuild: setup makemigrations migrate collectstatic start
7676
.PHONY: test
7777
test: setup
7878
${VENV_PY_PATH} ${NETBOX_MANAGE_PATH}/manage.py makemigrations ${PLUGIN_NAME} --check
79-
${VENV_PY_PATH} ${NETBOX_MANAGE_PATH}/manage.py test ${PLUGIN_NAME}
79+
${VENV_PY_PATH} ${NETBOX_MANAGE_PATH}/manage.py test ${PLUGIN_NAME} -v 2
8080

8181
#relpatch:
8282
# $(eval GSTATUS := $(shell git status --porcelain))

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ doco="docker compose --file docker-compose.yml"
1717
test_netbox_unit_tests() {
1818
echo "⏱ Running NetBox Unit Tests"
1919
$doco run --rm netbox python manage.py makemigrations netbox_acls --check
20-
$doco run --rm netbox python manage.py test netbox_acls
20+
$doco run --rm netbox python manage.py test netbox_acls -v 2
2121
}
2222

2323
test_cleanup() {

0 commit comments

Comments
 (0)