forked from meltano/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Explicitly install
poetry-plugin-export
in CI environments that…
… need to export requirements (meltano#2055) * ci: Explicitly install `poetry-plugin-export` in CI environments that need exporting requirements * ci: BUmp `poetry-plugin-export`
- Loading branch information
1 parent
2a64cf6
commit 5b84912
Showing
3 changed files
with
22 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pip==23.3.1 | ||
poetry==1.7.1 | ||
poetry-plugin-export==1.6.0 | ||
pre-commit==3.5.0 | ||
nox==2023.4.22 | ||
nox-poetry==1.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,9 +38,13 @@ jobs: | |
pip --version | ||
- name: Install Poetry | ||
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install poetry | ||
pipx inject poetry poetry-plugin-export | ||
poetry --version | ||
poetry self show plugins | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/[email protected] | ||
|
@@ -59,8 +63,8 @@ jobs: | |
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox | ||
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry | ||
pipx install nox | ||
pipx inject nox nox-poetry | ||
nox --version | ||
- name: Run Nox | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,9 @@ jobs: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install poetry | ||
pipx inject poetry poetry-plugin-export | ||
poetry --version | ||
poetry self show plugins | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/[email protected] | ||
|
@@ -83,8 +85,8 @@ jobs: | |
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox | ||
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry | ||
pipx install nox | ||
pipx inject nox nox-poetry | ||
nox --version | ||
- name: Run Nox | ||
|
@@ -122,7 +124,9 @@ jobs: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install poetry | ||
pipx inject poetry poetry-plugin-export | ||
poetry --version | ||
poetry self show plugins | ||
- name: Setup Python 3.10 | ||
uses: actions/[email protected] | ||
|
@@ -143,8 +147,8 @@ jobs: | |
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox | ||
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry | ||
pipx install nox | ||
pipx inject nox nox-poetry | ||
nox --version | ||
- name: Run Nox | ||
|
@@ -160,9 +164,13 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Install Poetry | ||
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry | ||
pipx install poetry | ||
pipx inject poetry poetry-plugin-export | ||
poetry --version | ||
poetry self show plugins | ||
- name: Set up Python | ||
uses: actions/[email protected] | ||
|
@@ -185,8 +193,8 @@ jobs: | |
env: | ||
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox | ||
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry | ||
pipx install nox | ||
pipx inject nox nox-poetry | ||
nox --version | ||
- name: Combine coverage data and display human readable report | ||
|