Skip to content

Commit 08a35ed

Browse files
author
avandras
committed
Debug temp location #1
1 parent 546228e commit 08a35ed

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/run_tests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77
def main():
88
what = os.environ.get('DCS', sys.argv[1] if len(sys.argv) > 1 else 'all')
99
tmp = os.environ.get('RUNNER_TEMP')
10+
print('tmp')
1011

1112
if what == 'all':
1213
flake8 = subprocess.call([sys.executable, 'setup.py', 'flake8'])
1314
test = subprocess.call([sys.executable, 'setup.py', 'test'])
1415
version = '.'.join(map(str, sys.version_info[:2]))
1516
shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version))
17+
print(os.path.join(tmp, '.coverage.' + version))
1618
return flake8 | test
1719
elif what == 'combine':
1820
for name in os.listdir(tmp):

0 commit comments

Comments
 (0)