Skip to content

Commit 69e8a91

Browse files
author
avandras
committed
Debug temp location 7
1 parent 18b9437 commit 69e8a91

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def main():
1212
flake8 = subprocess.call([sys.executable, 'setup.py', 'flake8'])
1313
test = subprocess.call([sys.executable, 'setup.py', 'test'])
1414
version = '.'.join(map(str, sys.version_info[:2]))
15-
print(os.listdir(os.environ.get('GITHUB_WORKSPACE')))
16-
# print(shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version)))
15+
# print(os.listdir(os.environ.get('GITHUB_WORKSPACE')))
16+
print(shutil.move('.coverage', 'coverage'))
1717
# print(os.listdir(tmp))
1818
return flake8 | test
1919
elif what == 'combine':

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uses: actions/upload-artifact@v4
4444
with:
4545
name: logs-${{ matrix.os }}-${{ matrix.python-version }}
46-
path: ${{ github.workspace }}/.coverage
46+
path: ${{ github.workspace }}/coverage
4747
retention-days: 1
4848

4949
post-unit-coverage:

0 commit comments

Comments
 (0)