diff --git a/Makefile b/Makefile index a8db846..7ee4be6 100644 --- a/Makefile +++ b/Makefile @@ -20,13 +20,10 @@ source _build/venv/bin/activate && grip test: _build/.stamp_venv - source _build/venv/bin/activate && pytest --timeout=300 --timeout_method=thread --capture=no + source _build/venv/bin/activate && pytest --hypothesis-profile=dev -test_verbose: _build/.stamp_venv - source _build/venv/bin/activate && pytest --timeout=300 --timeout_method=thread --capture=no --hypothesis-verbosity=verbose - -test_long: _build/.stamp_venv - source _build/venv/bin/activate && pytest --timeout=43200 --timeout_method=thread --capture=no --hypothesis-profile=ci +test_ci: _build/.stamp_venv + source _build/venv/bin/activate && pytest --hypothesis-profile=ci venv_bash: _build/.stamp_venv source _build/venv/bin/activate && bash diff --git a/requirements.txt b/requirements.txt index f6600ad..42afdd2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ black grip pytest -pytest-timeout hypothesis diff --git a/tests/conftest.py b/tests/conftest.py index 105e2ce..cb24412 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,3 +1,4 @@ from hypothesis import settings -settings.register_profile("ci", max_examples=1500000) +settings.register_profile("dev", max_examples=1000, print_blob=True) +settings.register_profile("ci", max_examples=10000, print_blob=True)