File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -38,15 +38,17 @@ jobs:
38
38
python -m pip install --upgrade pip
39
39
python -m pip install --upgrade setuptools
40
40
python -m pip install --upgrade wheel
41
- pip install --no-cache-dir -r requirements.txt --upgrade
41
+ python -m pip install --no-cache-dir -r requirements.txt --upgrade
42
42
- name : Install pytest, coverage
43
43
run : |
44
- pip install pytest
45
- pip install coverage
44
+ python -m pip install pytest
45
+ python -m pip install coverage
46
46
# https://coverage.readthedocs.io/en/7.6.10/cmd.html#cmd-run
47
47
- name : Generate coverage report
48
48
run : |
49
+ # python -c "import os; print(os.getcwd())"
49
50
coverage run -m pytest --data-file=cobertura.xml
51
+ # coverage report -m
50
52
- name : List test files
51
53
run : |
52
54
ls
You can’t perform that action at this time.
0 commit comments