File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,19 @@ jobs:
1616 python-version : ${{ matrix.python-version }}
1717 - name : Install Python dependencies
1818 run : |
19- python -m pip install --upgrade pip
19+ python -m pip install --upgrade setuptools wheel virtualenv
2020 pip install poetry
21- poetry config virtualenvs.create false
22- poetry install
21+ poetry config virtualenvs.create true
22+ poetry install --with dev
2323 - name : Install Pandoc # apt version seems too old
2424 uses : r-lib/actions/setup-pandoc@v2
2525 - name : Linting Checks
2626 run : |
27- black --check .
28- isort --check-only in2lambda docs
29- pydocstyle --convention=google in2lambda
27+ poetry run black .
28+ poetry run isort --check-only in2lambda docs
29+ poetry run pydocstyle --convention=google in2lambda
3030 - name : pytest
31- run : pytest --cov-report=xml:coverage.xml --cov=in2lambda --doctest-modules in2lambda
31+ run : poetry run pytest --cov-report=xml:coverage.xml --cov=in2lambda --doctest-modules in2lambda
3232 - name : Upload coverage to Codecov
3333 uses : codecov/codecov-action@v3
3434 with :
Original file line number Diff line number Diff line change 11#FileLock
2- #Tue Jul 29 17:03 :01 BST 2025
2+ #Wed Jul 30 15:02 :01 BST 2025
33hostName=localhost
44id=1984368cdad49ef6310e31a8ad975c2da3ea6a244d8
55method=file
You can’t perform that action at this time.
0 commit comments