Skip to content

Commit df7ea92

Browse files
committed
chore: unit test output no more verbose
1 parent 7346f52 commit df7ea92

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build_pypi.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
#!/bin/bash
2-
rm -R build/ dist/ *egg-info ; python3 setup.py build sdist
2+
3+
PROJ_NAME=$(ls | grep *.egg-info | sed -e 's/.egg-info//g') ; rm -R build/ dist/* *.egg-info ; pip uninstall $PROJ_NAME ; python setup.py build sdist
4+
twine upload dist/*

tests/run_tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
# Load models
2727
application = get_wsgi_application()
2828

29-
management.call_command("test", "djangosaml2.tests", "testprofiles")
29+
management.call_command("test", "djangosaml2.tests", "testprofiles", "-v", "2")

0 commit comments

Comments
 (0)