We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f8265e commit 42349deCopy full SHA for 42349de
yhttp/dev/__init__.py
@@ -1 +1 @@
1
-__version__ = '3.0.5'
+__version__ = '3.1.0'
yhttp/dev/fixtures.py
@@ -8,6 +8,16 @@
8
import pytest
9
10
11
+CICD = 'CI' in os.environ \
12
+ and os.environ['CI'] \
13
+ and 'GITHUB_RUN_ID' in os.environ
14
+
15
16
+@pytest.fixture
17
+def cicd():
18
+ return CICD
19
20
21
@pytest.fixture
22
def mockupfs():
23
temp_directories = []
0 commit comments