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 @@ -13,8 +13,8 @@ def main():
1313 test = subprocess .call ([sys .executable , 'setup.py' , 'test' ])
1414 version = '.' .join (map (str , sys .version_info [:2 ]))
1515 print (os .listdir (os .environ .get ('GITHUB_WORKSPACE' )))
16- print (shutil .move ('.coverage' , os .path .join (tmp , '.coverage.' + version )))
17- print (os .listdir (tmp ))
16+ # print(shutil.move('.coverage', os.path.join(tmp, '.coverage.' + version)))
17+ # print(os.listdir(tmp))
1818 return flake8 | test
1919 elif what == 'combine' :
2020 for name in os .listdir (tmp ):
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 : ${{ runner.temp }}/.coverage.${{ matrix.python-version }}
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