diff --git a/runtests.py b/runtests.py index 7982ee2ef..f795829b5 100755 --- a/runtests.py +++ b/runtests.py @@ -8,8 +8,8 @@ import sys import pytest PYTEST_ARGS = { - 'default': ['tests', '--tb=short'], - 'fast': ['tests', '--tb=short', '-q'], + 'default': ['tests', '--tb=short', '-s'], + 'fast': ['tests', '--tb=short', '-q', '-s'], } FLAKE8_ARGS = ['rest_framework', 'tests', '--ignore=E501'] diff --git a/tests/test_urlpatterns.py b/tests/test_urlpatterns.py index fee96878d..78d37c1a8 100644 --- a/tests/test_urlpatterns.py +++ b/tests/test_urlpatterns.py @@ -61,7 +61,6 @@ class FormatSuffixTests(TestCase): assert callback is None continue - print(test_path, callback, callback_args, callback_kwargs) assert callback_args == test_path.args assert callback_kwargs == test_path.kwargs