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 7ce5df2 commit 0003853Copy full SHA for 0003853
.github/workflows/run_tests.py
@@ -7,13 +7,13 @@
7
def main():
8
what = os.environ.get('DCS', sys.argv[1] if len(sys.argv) > 1 else 'all')
9
tmp = os.environ.get('RUNNER_TEMP')
10
- print('tmp')
11
12
if what == 'all':
13
flake8 = subprocess.call([sys.executable, 'setup.py', 'flake8'])
14
test = subprocess.call([sys.executable, 'setup.py', 'test'])
15
version = '.'.join(map(str, sys.version_info[:2]))
16
- shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version))
+ print(os.listdir())
+ print(shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version)))
17
print(os.path.join(tmp, '.coverage.' + version))
18
return flake8 | test
19
elif what == 'combine':
0 commit comments