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 c3636dc commit 1463f48Copy full SHA for 1463f48
.github/workflows/run_tests.py
@@ -12,7 +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
- shutil.move('.coverage', 'coverage.' + version)
+ print(shutil.move('.coverage', 'coverage.' + version))
16
+ print(os.getcwd())
17
return flake8 | test
18
elif what == 'combine':
19
for name in os.listdir(tmp):
0 commit comments