Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use poetry-plugin-export during workflows #81

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install nox poetry
poetry self add poetry-plugin-export

- name: "Unit tests"
run: nox -s build_tests_unit -x -- -vv
Expand Down Expand Up @@ -74,6 +75,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install nox poetry
poetry self add poetry-plugin-export

- name: "Get public IP address of runner"
# Need to handle this for Windows, MacOS, and linux
Expand Down Expand Up @@ -118,6 +120,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install nox poetry
poetry self add poetry-plugin-export

- uses: conda-incubator/setup-miniconda@v3
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
run: |
pip install --upgrade pip
pip install poetry nox
poetry self add poetry-plugin-export
- name: Sphinx build
run: |
nox -s docs
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/source_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install nox poetry
poetry self add poetry-plugin-export

- name: "Get public IP address of runner"
# Need to handle this for Windows, MacOS, and linux
Expand Down Expand Up @@ -94,6 +95,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install nox poetry
poetry self add poetry-plugin-export

- name: "Get public IP address of runner"
# Need to handle this for Windows, MacOS, and linux
Expand Down Expand Up @@ -155,6 +157,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install nox poetry
poetry self add poetry-plugin-export

- name: "DRAGONS release tests"
run: |
Expand Down
Loading