Skip to content

Commit d3ce88e

Browse files
committed
➕ pytest
1 parent 2d68453 commit d3ce88e

File tree

3 files changed

+106
-4
lines changed

3 files changed

+106
-4
lines changed

.github/workflows/python-app.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v2
18-
- name: Set up Python 3.6.13
18+
- name: Set up Python 3.8.0
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.6.13
21+
python-version: 3.8.0
2222

2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
2626
pip3 install poetry
27-
poetry install
27+
poetry install --dev
2828
2929
- name: Lint with flake8
3030
run: |

poetry.lock

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

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ flake8 = "^3.9.1"
1818
isort = "^5.8.0"
1919
black = "^21.4b2"
2020
autopep8 = "^1.5.7"
21+
pytest = "^7.1.2"
2122

2223
[build-system]
2324
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)