summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBernát Gábor <bgabor8@bloomberg.net>2021-01-16 08:36:08 +0000
committerGitHub <noreply@github.com>2021-01-16 08:36:08 +0000
commitb4e860c1f72c2537fc332ff20581f15a25b801b9 (patch)
tree454330536e03ae445614413bad52175adb23c8c3 /.github
parent07bf84e1002350dc2c02aee6df44c75dba5e1a85 (diff)
downloadtox-git-b4e860c1f72c2537fc332ff20581f15a25b801b9.tar.gz
Use .tox/4 instead of .tox4 (#1825)
Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/check.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index 77d91ab3..b6431188 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -61,11 +61,11 @@ jobs:
DIFF_AGAINST: HEAD
- name: Rename coverage report file
run: |
- import os; os.rename('.tox4/coverage.{}.xml'.format(os.environ['TOXENV']), '.tox4/coverage.xml')
+ import os; os.rename('.tox/4/coverage.{}.xml'.format(os.environ['TOXENV']), '.tox/4/coverage.xml')
shell: python
- uses: codecov/codecov-action@v1
with:
- file: ./.tox4/coverage.xml
+ file: ./.tox/4/coverage.xml
flags: tests
name: ${{ matrix.py }} - ${{ matrix.os }}