Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Oct 5, 2023
1 parent db2aeee commit d77418f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_natural_range.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def test_upper_less_than_lower__fails_as_expected(self, bounds):
with pytest.raises(NatIntervalException):
NatIntervalInclusive(lo, hi)


@pytest.mark.skip(reason="Unable to reproduce test failing locally.")
class NaturalRangeFromStringTests:
"""Tests for parsing of natural number range from text, like CLI arg"""
Expand All @@ -61,7 +62,6 @@ def test_zero__does_not_parse(self, arg_template, legit_delim, upper_bound):
with pytest.raises(NatIntervalException):
NatIntervalInclusive.from_string(arg, upper_bound=upper_bound)


@given(upper_bound=st.integers())
def test_just_delimiter__does_not_parse(self, legit_delim, upper_bound):
with pytest.raises(NatIntervalException):
Expand Down

0 comments on commit d77418f

Please sign in to comment.