Skip to content

Commit 92a4c52

Browse files
committed
remove non-existing dependency group installation
1 parent 8a6aef9 commit 92a4c52

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/_integration_test.yml

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

5353
- name: Install dependencies
5454
shell: bash
55-
run: poetry install --with=test_integration,test
55+
run: poetry install --with=test
5656

5757
- name: Run integration tests
5858
shell: bash

.github/workflows/_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- name: Install unit+integration test dependencies
8686
working-directory: ${{ inputs.working-directory }}
8787
run: |
88-
poetry install --with test,test_integration
88+
poetry install --with test
8989
9090
- name: Get .mypy_cache_test to speed up mypy
9191
uses: actions/cache@v4

.github/workflows/_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
poetry run python -c "import $IMPORT_NAME; print(dir($IMPORT_NAME))"
153153
154154
- name: Import test dependencies
155-
run: poetry install --with test,test_integration
155+
run: poetry install --with test
156156
working-directory: ${{ inputs.working-directory }}
157157

158158
# Overwrite the local version of the package with the test PyPI version.

0 commit comments

Comments
 (0)