diff --git a/tests/hypothesis/test_inherited_test.py b/tests/hypothesis/test_inherited_test.py deleted file mode 100644 index a7762264..00000000 --- a/tests/hypothesis/test_inherited_test.py +++ /dev/null @@ -1,20 +0,0 @@ -import hypothesis.strategies as st -import pytest -from hypothesis import given - - -class BaseClass: - @pytest.mark.asyncio - @given(value=st.integers()) - async def test_hypothesis(self, value: int) -> None: - pass - - -class TestOne(BaseClass): - """During the first execution the Hypothesis test - is wrapped in a synchronous function.""" - - -class TestTwo(BaseClass): - """Execute the test a second time to ensure that - the test receives a fresh event loop."""