mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-03-13 15:46:25 +00:00
don't fail this test because it is slow
This commit is contained in:
parent
33f84412b4
commit
c2e8d94a73
@ -48,6 +48,8 @@ from testtools.matchers import (
|
||||
)
|
||||
|
||||
from hypothesis import (
|
||||
HealthCheck,
|
||||
settings,
|
||||
given,
|
||||
note,
|
||||
)
|
||||
@ -85,6 +87,12 @@ class GetArgvTests(SyncTestCase):
|
||||
),
|
||||
)
|
||||
|
||||
@settings(
|
||||
# This test runs a child process. This is unavoidably slow and
|
||||
# variable. Disable the two time-based Hypothesis health checks.
|
||||
suppress_health_check=[HealthCheck.too_slow],
|
||||
deadline=None,
|
||||
)
|
||||
@given(lists(text(min_size=1, max_size=4), min_size=1, max_size=4))
|
||||
def test_argv_values(self, argv):
|
||||
"""
|
||||
|
Loading…
x
Reference in New Issue
Block a user