Skip to content

Commit 0d1205e

Browse files
committed
Run combine with unit tests step so we can throw in the python version slug
1 parent e4cbd63 commit 0d1205e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/cicd.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ jobs:
212212
echo "Test environment: ${env_test}";
213213
tox -e "${env_test}";
214214
tar cvzf pytest-logs.tgz ".tox/${env_test}/log";
215+
tox -e "coverage_combine-${env_test}";
216+
env:
217+
COVERAGE_FILE: .tox/coverage
215218

216219
- name: Upload pytest log artifact
217220
if: failure()
@@ -226,11 +229,6 @@ jobs:
226229
with:
227230
python-version: "3.9"
228231

229-
- name: "Combine coverage"
230-
run: tox -e coverage_combine;
231-
env:
232-
COVERAGE_FILE: .tox/coverage
233-
234232
- name: "Upload coverage to Codecov"
235233
uses: "codecov/codecov-action@v1"
236234
with:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ skip_missing_interpreters = {tty:True:False}
1515
basepython = python3.9
1616

1717
deps =
18-
idna==2.9
18+
idna==2.9 # rq.filter: <3
1919

2020
setenv =
2121
PY_MODULE=hyperlink

0 commit comments

Comments
 (0)