2019-05-07 10:11:51 +00:00
|
|
|
Index: vdirsyncer-0.16.7/tests/system/cli/test_sync.py
|
|
|
|
===================================================================
|
|
|
|
--- vdirsyncer-0.16.7.orig/tests/system/cli/test_sync.py 2018-07-19 21:07:31.000000000 +0200
|
|
|
|
+++ vdirsyncer-0.16.7/tests/system/cli/test_sync.py 2019-05-07 08:59:40.114934546 +0200
|
|
|
|
@@ -5,11 +5,10 @@ import sys
|
|
|
|
from textwrap import dedent
|
|
|
|
|
|
|
|
import hypothesis.strategies as st
|
|
|
|
-from hypothesis import example, given
|
|
|
|
+from hypothesis import example, given, settings
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
-
|
|
|
|
def test_simple_run(tmpdir, runner):
|
|
|
|
runner.write_with_general(dedent('''
|
|
|
|
[pair my_pair]
|
|
|
|
@@ -273,6 +272,7 @@ def test_multiple_pairs(tmpdir, runner):
|
|
|
|
# XXX: https://github.com/pimutils/vdirsyncer/issues/617
|
|
|
|
@pytest.mark.skipif(sys.platform == 'darwin',
|
|
|
|
reason='This test inexplicably fails')
|
2019-06-05 07:16:21 +00:00
|
|
|
+@settings(deadline=2000.0)
|
2019-05-07 10:11:51 +00:00
|
|
|
@given(collections=st.sets(
|
|
|
|
st.text(
|
|
|
|
st.characters(
|