Skip to content
Snippets Groups Projects
Unverified Commit ffe789b1 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Let this test be a little slow

My guess is most of  the time is spent in create_client_from_config and I
don't know if there's anything we can do about that.
parent d8392735
No related branches found
No related tags found
1 merge request!84Fix handling of NativeStorageServer / actual storage server
...@@ -52,6 +52,7 @@ from testtools.content import ( ...@@ -52,6 +52,7 @@ from testtools.content import (
) )
from hypothesis import ( from hypothesis import (
given, given,
settings,
) )
from hypothesis.strategies import ( from hypothesis.strategies import (
just, just,
...@@ -478,6 +479,9 @@ class LeaseMaintenanceServiceTests(TestCase): ...@@ -478,6 +479,9 @@ class LeaseMaintenanceServiceTests(TestCase):
# of those at the right time. :/ # of those at the right time. :/
tempfile.tempdir = original_tempdir tempfile.tempdir = original_tempdir
@settings(
deadline=None,
)
@given( @given(
tahoe_configs_with_dummy_redeemer, tahoe_configs_with_dummy_redeemer,
sampled_from([SERVERS_YAML, TWO_SERVERS_YAML]), sampled_from([SERVERS_YAML, TWO_SERVERS_YAML]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment