Skip to content

Commit 1c7e1e1

Browse files
committed
Change CI directory
1 parent 553f48f commit 1c7e1e1

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ jobs:
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

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
build/
44
/dist/
55
/tmp/
6-
/ci-env/
76
*.egg-info/
87
__pycache__
98
/.vscode/

0 commit comments

Comments
 (0)