Skip to content

Commit e13920b

Browse files
committed
Default to using the poetry --all-extras flag
1 parent 87eeb09 commit e13920b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Install dependencies
5151
if: steps.cache.outputs.cache-hit != 'true'
52-
run: poetry install -v -E toml -E yaml -E azure -E aws -E gcp -E vault
52+
run: poetry install -v --all-extras
5353

5454
- name: Run pytest
5555
run: poetry run pytest --cov=./ --cov-report=xml

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ envlist = py38, py39, py310, py311
6262
[testenv]
6363
allowlist_externals = poetry
6464
commands =
65-
poetry install -v -E toml -E yaml -E azure -E aws -E gcp -E vault -E validation
65+
poetry install -v --all-extras
6666
poetry run pytest
6767
"""
6868

0 commit comments

Comments
 (0)