We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0003853 commit 0491c41Copy full SHA for 0491c41
.github/workflows/run_tests.py
@@ -12,9 +12,8 @@ def main():
12
flake8 = subprocess.call([sys.executable, 'setup.py', 'flake8'])
13
test = subprocess.call([sys.executable, 'setup.py', 'test'])
14
version = '.'.join(map(str, sys.version_info[:2]))
15
- print(os.listdir())
16
print(shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version)))
17
- print(os.path.join(tmp, '.coverage.' + version))
+ print(os.listdir(tmp))
18
return flake8 | test
19
elif what == 'combine':
20
for name in os.listdir(tmp):
0 commit comments