fix: avoid installing unnecessary root module by adding --no-root
This commit is contained in:
parent
c4b6408eaa
commit
6228e1062e
2 changed files with 6 additions and 4 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -91,9 +91,11 @@ jobs:
|
||||||
uses: Gr1N/setup-poetry@v7
|
uses: Gr1N/setup-poetry@v7
|
||||||
with:
|
with:
|
||||||
poetry-version: 1.1.7
|
poetry-version: 1.1.7
|
||||||
- run: |
|
|
||||||
poetry install
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
poetry install --no-root
|
||||||
|
|
||||||
- name: Validate Custom Input File
|
- name: Validate Custom Input File
|
||||||
run: |
|
run: |
|
||||||
poetry run python -m pytest
|
pytest
|
||||||
|
|
2
.github/workflows/release-tagged-version.yml
vendored
2
.github/workflows/release-tagged-version.yml
vendored
|
@ -27,7 +27,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
poetry-version: 1.1.7
|
poetry-version: 1.1.7
|
||||||
- run: |
|
- run: |
|
||||||
poetry install
|
poetry install --no-root
|
||||||
poetry build
|
poetry build
|
||||||
|
|
||||||
- name: "Release Tagged Version"
|
- name: "Release Tagged Version"
|
||||||
|
|
Loading…
Reference in a new issue