Skip to content

Commit

Permalink
remove non-existing dependency group installation
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjakob committed May 3, 2024
1 parent c0593a6 commit dedc31b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Install dependencies
shell: bash
run: poetry install --with=test_integration,test
run: poetry install --with=test

- name: Run integration tests
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Install unit+integration test dependencies
working-directory: ${{ inputs.working-directory }}
run: |
poetry install --with test,test_integration
poetry install --with test
- name: Get .mypy_cache_test to speed up mypy
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
poetry run python -c "import $IMPORT_NAME; print(dir($IMPORT_NAME))"
- name: Import test dependencies
run: poetry install --with test,test_integration
run: poetry install --with test
working-directory: ${{ inputs.working-directory }}

# Overwrite the local version of the package with the test PyPI version.
Expand Down

0 comments on commit dedc31b

Please sign in to comment.