We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce56a7 commit c750978Copy full SHA for c750978
LICENSE
@@ -5,6 +5,7 @@ Jean Paul Calderone
5
Adi Roiban
6
Amber Hawkie Brown
7
Mahmoud Hashemi
8
+Wilfredo Sanchez Vega
9
10
and others that have contributed code to the public domain.
11
src/hyperlink/test/__init__.py
@@ -0,0 +1,22 @@
1
+# -*- coding: utf-8 -*-
2
+"""
3
+Tests for hyperlink
4
+
+__all = ()
+def _init_hypothesis():
+ # type: () -> None
+ from os import environ
12
13
+ if "CI" in environ:
14
+ from hypothesis import HealthCheck, settings
15
16
+ settings.register_profile(
17
+ "patience", settings(suppress_health_check=[HealthCheck.too_slow])
18
+ )
19
+ settings.load_profile("patience")
20
21
22
+_init_hypothesis()
0 commit comments