Skip to content

Commit 18b9437

Browse files
author
avandras
committed
Debug temp location 6
1 parent b2c4199 commit 18b9437

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
@@ -13,8 +13,8 @@ def main():
1313
test = subprocess.call([sys.executable, 'setup.py', 'test'])
1414
version = '.'.join(map(str, sys.version_info[:2]))
1515
print(os.listdir(os.environ.get('GITHUB_WORKSPACE')))
16-
print(shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version)))
17-
print(os.listdir(tmp))
16+
# print(shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version)))
17+
# print(os.listdir(tmp))
1818
return flake8 | test
1919
elif what == 'combine':
2020
for name in os.listdir(tmp):

.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: ${{ runner.temp }}/.coverage.${{ matrix.python-version }}
46+
path: ${{ github.workspace }}/.coverage
4747
retention-days: 1
4848

4949
post-unit-coverage:

0 commit comments

Comments
 (0)