Skip to content

Commit

Permalink
fix: poetry calls failing (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Mar 15, 2024
1 parent 3897d14 commit d34d2c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests-pytest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ runs:
run: |
if grep -q 'build-backend = "poetry\.core\.masonry\.api"' "pyproject.toml"; then
python -m pip install poetry
python -m poetry install
poetry install
else
python -m pip install .
fi
Expand Down Expand Up @@ -152,7 +152,7 @@ runs:
if: env.EXISTS_TESTS_REQUIREMENTS == 'false'
run: |
if grep -q 'build-backend = "poetry\.core\.masonry\.api"' "pyproject.toml"; then
python -m poetry install --with tests
poetry install --with tests
else
python -m pip install .[tests]
fi
Expand Down

0 comments on commit d34d2c5

Please sign in to comment.