Skip to content

Commit

Permalink
Add integration test with pip
Browse files Browse the repository at this point in the history
Signed-off-by: Facundo Tuesca <facundo.tuesca@trailofbits.com>
  • Loading branch information
facutuesca committed Oct 29, 2024
1 parent 88688a8 commit 02aa99e
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,44 @@ jobs:

- name: test
run: make test INSTALL_EXTRA=test

integration-test:
strategy:
matrix:
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
pip:
- "git+https://github.com/pypa/pip.git@main"
# PR adding the plugin architecture to pip
# Remove once it's merged
- "git+https://github.com/pypa/pip.git@refs/pull/12985/head"

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: pyproject.toml

- name: Install Python ${{ matrix.python }}
run: uv python install ${{ matrix.python }}

- name: Install pip
run: uv pip install ${{ matrix.pip }}

- name: Install plugin
run: uv pip install .

- name: Install package with provenance available
run: pip install abi3info==2024.10.26

- name: Install package without provenance available
run: pip install abi3info==2023.8.25

0 comments on commit 02aa99e

Please sign in to comment.