Skip to content

Commit e4be4a3

Browse files
committed
Use poetry in build-test CI workflow
1 parent a14922f commit e4be4a3

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
python-version: ${{ matrix.python-version }}
1616
- name: Install dependencies
1717
run: |
18-
python -m pip install --upgrade pip
19-
pip install -r requirements.txt
20-
pip install -r test-requirements.txt
18+
pip install poetry
19+
poetry install
2120
- name: Test with pytest
2221
run: |
23-
pytest --cov=ynab
22+
poetry run pytest --cov=ynab

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

test-requirements.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)