Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix: df data synthesis with size=None, fix CI #410

Merged
merged 9 commits into from
Feb 12, 2021
Prev Previous commit
fix up test_dataframe_with_regex
  • Loading branch information
cosmicBboy committed Feb 12, 2021
commit 2e78b8f9c092076200f77d7d34c0ad1157d919f4
2 changes: 1 addition & 1 deletion tests/strategies/test_strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ def test_dataframe_example():
"[a-z]+_[0-9]+_[a-z]+",
],
)
@hypothesis.given(st.data(), st.integers(min_value=-10, max_value=30))
@hypothesis.given(st.data(), st.integers(min_value=-5, max_value=5))
@hypothesis.settings(
suppress_health_check=[hypothesis.HealthCheck.too_slow],
)
Expand Down