File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 with :
2525 python-version : " 3.14"
2626
27- - name : Enter CI working directory and prepare venv
27+ - name : Prepare venv
2828 run : |
29- mkdir ci-env
30- cd ci-env
3129 pip install --upgrade pip
3230 python -m venv venv
3331
@@ -40,21 +38,19 @@ jobs:
4038 run : .\venv\Scripts\activate.ps1
4139
4240 - name : Install library (in editable mode to measure coverage)
43- run : pip install -e .. / --verbose
41+ run : pip install -e ./ --verbose
4442
4543 - name : Install test dependencies
4644 run : pip install scipy coverage
4745
4846 - name : Execute tests and generate code coverage data
4947 run : |
50- python -m coverage run --source .. /pylanczos/ -m unittest discover . ./test -v
48+ python -m coverage run --source ./pylanczos/ -m unittest discover ./test -v
5149 python -m coverage xml
5250
5351 - name : Upload coverage data to Codecov
5452 if : ${{ matrix.os == 'ubuntu-latest' }}
5553 uses : codecov/codecov-action@v6
5654 with :
5755 token : ${{ secrets.CODECOV_TOKEN }}
58- files : ./test/coverage.xml
59- disable_search : true
6056 fail_ci_if_error : true
Original file line number Diff line number Diff line change 33build /
44/dist /
55/tmp /
6- /ci-env /
76* .egg-info /
87__pycache__
98/.vscode /
You can’t perform that action at this time.
0 commit comments