Skip to content

Commit

Permalink
Update Pipfile.lock to latest dependencies (#71)
Browse files Browse the repository at this point in the history
* Update Pipfile.lock to latest dependencies

* Suppress the too_slow healthcheck for test_roundtrip_archive

See #41. Hopefully it won't slow things down too much.
  • Loading branch information
jdpage authored Sep 18, 2018
1 parent 87e4892 commit e5b0cdc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
26 changes: 13 additions & 13 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers =
[options]
packages = find:
install_requires =
attrs>=18.1.0
attrs>=18.2.0
regex>=2018.08.29
python_requires = >=3.6

Expand Down
3 changes: 2 additions & 1 deletion tests/test_archive.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import io
import struct
import zlib
from hypothesis import given
from hypothesis import given, settings, HealthCheck
import hypothesis.strategies as hs
from nose.tools import (
assert_equal)
Expand Down Expand Up @@ -336,6 +336,7 @@ def test_unpack_archive():


@given(archives())
@settings(suppress_health_check=[HealthCheck.too_slow])
def test_roundtrip_archive(a):
with io.BytesIO() as f:
a.dump(f)
Expand Down

0 comments on commit e5b0cdc

Please sign in to comment.