diff --git a/Makefile b/Makefile index 623fc03a..44c8e020 100644 --- a/Makefile +++ b/Makefile @@ -37,8 +37,8 @@ preprocess: .preprocessed upload: dist/*.whl twine upload dist/*.whl -test: install-local - pytest tests/unittest +test: + python -bb -m pytest tests/unittest install-local: .preprocessed pip install -e . diff --git a/tests/unittest/test_websockets.py b/tests/unittest/test_websockets.py index 8b26423b..81342c13 100644 --- a/tests/unittest/test_websockets.py +++ b/tests/unittest/test_websockets.py @@ -20,10 +20,8 @@ def test_hello_twice(ws_server): w.send(b"Bar") reply, _ = w.recv() - print(reply) for _ in range(10): w.send(b"Bar") reply, _ = w.recv() assert reply == b"Bar" - print(reply)