File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ def main():
1212 flake8 = subprocess .call ([sys .executable , 'setup.py' , 'flake8' ])
1313 test = subprocess .call ([sys .executable , 'setup.py' , 'test' ])
1414 version = '.' .join (map (str , sys .version_info [:2 ]))
15- print (os .listdir (os .environ .get ('GITHUB_WORKSPACE' )))
16- # print(shutil.move('.coverage', os.path.join(tmp, '. coverage.' + version) ))
15+ # print(os.listdir(os.environ.get('GITHUB_WORKSPACE')))
16+ print (shutil .move ('.coverage' , ' coverage' ))
1717 # print(os.listdir(tmp))
1818 return flake8 | test
1919 elif what == 'combine' :
Original file line number Diff line number Diff line change 4343 uses : actions/upload-artifact@v4
4444 with :
4545 name : logs-${{ matrix.os }}-${{ matrix.python-version }}
46- path : ${{ github.workspace }}/. coverage
46+ path : ${{ github.workspace }}/coverage
4747 retention-days : 1
4848
4949 post-unit-coverage :
You can’t perform that action at this time.
0 commit comments