diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e4997f112a..b613c94d33 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -158,7 +158,7 @@ jobs: pip install -r requirements/coverage.txt pip install hypothesis-python/[all] - name: Run tests - run: python -m pytest --numprocesses auto hypothesis-python/tests/ --ignore=hypothesis-python/tests/quality/ --ignore=hypothesis-python/tests/ghostwriter/ + run: python -m pytest --numprocesses auto hypothesis-python/tests/ --ignore=hypothesis-python/tests/quality/ --ignore=hypothesis-python/tests/ghostwriter/ --ignore=hypothesis-python/tests/patching/ test-osx: runs-on: macos-latest diff --git a/hypothesis-python/tests/conjecture/test_test_data.py b/hypothesis-python/tests/conjecture/test_test_data.py index 0ea0659517..521ac95ed6 100644 --- a/hypothesis-python/tests/conjecture/test_test_data.py +++ b/hypothesis-python/tests/conjecture/test_test_data.py @@ -100,7 +100,7 @@ def test_can_draw_weighted_integer_range(data, n): @given(st.binary(min_size=10)) -def test_can_draw_weighted_integer_range(buffer): +def test_can_draw_weighted_integer_range_2(buffer): data = ConjectureData.for_buffer(buffer) data.draw_integer(0, 7, weights=[1] * 8, shrink_towards=6)