forked from pool/python-vdirsyncer
- version update to 0.16.7 Fixes for Python 3.7 - added patches https://github.com/pimutils/vdirsyncer/pull/779 + python-vdirsyncer-fix-tests.patch OBS-URL: https://build.opensuse.org/request/show/689876 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-vdirsyncer?expand=0&rev=8
17 lines
451 B
Diff
17 lines
451 B
Diff
diff --git a/tests/conftest.py b/tests/conftest.py
|
|
index ff774ce1..6272d42d 100644
|
|
--- a/tests/conftest.py
|
|
+++ b/tests/conftest.py
|
|
@@ -27,7 +27,10 @@ def benchmark():
|
|
del pytest_benchmark
|
|
|
|
|
|
-settings.suppress_health_check = [HealthCheck.too_slow]
|
|
+settings.register_profile("dev", settings(
|
|
+ suppress_health_check=[HealthCheck.too_slow]
|
|
+))
|
|
+settings.load_profile("dev")
|
|
|
|
settings.register_profile("ci", settings(
|
|
max_examples=1000,
|