Skip to content

Commit 278bb60

Browse files
committed
fix(controller/tests): run coverage with "--timid" flag
Running controller tests through the venerable coverage.py tool raises some errors during cleanup, as we seem to have dangling PostgreSQL sessions. Adding the "--timid" flag works around this. Fixes #727.
1 parent df00529 commit 278bb60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ db:
4141
python manage.py syncdb --migrate --noinput
4242

4343
coverage:
44-
coverage run manage.py test --noinput api web
44+
coverage run --timid manage.py test --noinput api web
4545
coverage html
4646

4747
flake8:

0 commit comments

Comments
 (0)