chore: use --all-extras flag in poetry install

This commit is contained in:
Benex254
2024-09-22 22:31:35 +03:00
parent c208dc3579
commit 249243aeb4
3 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ env_list = lint, pyright, py{310,311}
description = run unit tests
deps =poetry
commands =
poetry install
poetry install --all-extras
poetry run pytest
[testenv:lint]
@@ -15,7 +15,7 @@ description = run linters
skip_install = true
deps =poetry
commands =
poetry install
poetry install --all-extras
poetry run black .
[testenv:pyright]
@@ -23,5 +23,5 @@ description = run type checking
skip_install = true
deps =poetry
commands =
poetry install --no-root
poetry install --no-root --all-extras
poetry run pyright