Skip to content

Commit

Permalink
final fixes I hope
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Nov 19, 2023
1 parent ec7d78d commit f4c221b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/tests/conjecture/test_test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit f4c221b

Please sign in to comment.