Skip to content

Commit 42349de

Browse files
committed
v3.1.0
1 parent 6f8265e commit 42349de

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

yhttp/dev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.0.5'
1+
__version__ = '3.1.0'

yhttp/dev/fixtures.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@
88
import pytest
99

1010

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+
1121
@pytest.fixture
1222
def mockupfs():
1323
temp_directories = []

0 commit comments

Comments
 (0)