Skip to content

Commit

Permalink
Smoke test: don't install build dependencies into the venv
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Mar 20, 2024
1 parent 0791533 commit b7a3ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
run: |
python3 -m virtualenv venv
WHEY_TRACEBACK = 1
python3 -m pip install $(pyproject-parser info build-system.requires -f /tmp/${{ matrix.config.name }}/pyproject.toml | jq 'join(" ")' -r) --prefix venv -I
python3 -m pip install $(pyproject-parser info build-system.requires -f /tmp/${{ matrix.config.name }}/pyproject.toml | jq 'join(" ")' -r)
python3 -m pip install /tmp/${{ matrix.config.name }} --prefix venv -I --no-build-isolation
venv/bin/python -m pip install -r /tmp/${{ matrix.config.name }}/tests/requirements.txt ${{ matrix.config.extra-install-args }} || exit 1
venv/bin/python -m pip show ${{ matrix.config.name }} || exit 1
Expand Down

0 comments on commit b7a3ff5

Please sign in to comment.