Skip to content

Commit 0003853

Browse files
author
avandras
committed
Debug temp location #2
1 parent 7ce5df2 commit 0003853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
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')
1110

1211
if what == 'all':
1312
flake8 = subprocess.call([sys.executable, 'setup.py', 'flake8'])
1413
test = subprocess.call([sys.executable, 'setup.py', 'test'])
1514
version = '.'.join(map(str, sys.version_info[:2]))
16-
shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version))
15+
print(os.listdir())
16+
print(shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version)))
1717
print(os.path.join(tmp, '.coverage.' + version))
1818
return flake8 | test
1919
elif what == 'combine':

0 commit comments

Comments
 (0)