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 546228e commit 08a35edCopy full SHA for 08a35ed
.github/workflows/run_tests.py
@@ -7,12 +7,14 @@
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))
17
+ print(os.path.join(tmp, '.coverage.' + version))
18
return flake8 | test
19
elif what == 'combine':
20
for name in os.listdir(tmp):
0 commit comments