Set debug to False in tests

This commit is contained in:
Taoufik
2018-10-29 22:53:56 +01:00
committed by GitHub
parent 359d366de4
commit 43b04eccbd
+4 -1
View File
@@ -18,7 +18,10 @@ def current_dir():
@pytest.fixture
def api():
return responder.API(allowed_hosts=["testserver", ";"])
return responder.API(
debug=False,
allowed_hosts=[";"]
)
@pytest.fixture