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

Add integration test with pip #7

Merged
merged 1 commit into from
Nov 8, 2024
Merged
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
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"
# Branch adding the plugin architecture to pip
# Remove once it's merged
- "git+https://github.com/trail-of-forks/pip.git@add-plugin-support"

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: Create virtual env
run: uv venv --python ${{ matrix.python }}

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

- name: Install plugin
run: .venv/bin/pip install .

- name: Install package with provenance available
run: .venv/bin/pip install abi3info==2024.10.26

- name: Install package without provenance available
run: .venv/bin/pip install abi3info==2023.8.25