Skip to content

Commit 9ef11ad

Browse files
committed
updated yml file
1 parent 72ccbd7 commit 9ef11ad

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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:

.metals/metals.lock.db

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#FileLock
2-
#Tue Jul 29 17:03:01 BST 2025
2+
#Wed Jul 30 15:02:01 BST 2025
33
hostName=localhost
44
id=1984368cdad49ef6310e31a8ad975c2da3ea6a244d8
55
method=file

0 commit comments

Comments
 (0)