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

Fix LTS compat tests #1326

Merged
merged 2 commits into from
Jan 10, 2025
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
13 changes: 6 additions & 7 deletions .github/workflows/lts-compat-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
census-build-version: # Add additional LTS releases as they occur
- "latest"
- "stable"
- "2024-07-01"
- "2023-12-15"
- "2023-07-25"
- "2023-05-15"
py-pkg-version:
- "~=1.10.0"
- "~=1.11.0"
- "~=1.12.0"
- "~=1.13.0"
- "~=1.14.0"
- "~=1.15.0"
- "~=1.16.0"
- "head-of-main"

runs-on: ${{matrix.os}}
Expand All @@ -43,12 +43,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip setuptools wheel
GIT_CLONE_PROTECTION_ACTIVE=false pip install -r ./api/python/cellxgene_census/scripts/requirements-dev.txt

if [ ${{matrix.py-pkg-version}} == "head-of-main" ]; then
pip install -e ./api/python/cellxgene_census/
pip install -e ./api/python/cellxgene_census/ -r ./api/python/cellxgene_census/scripts/requirements-dev.txt
else
pip install -U cellxgene_census${{ matrix.py-pkg-version }}
pip install -U cellxgene_census${{ matrix.py-pkg-version }} -r ./api/python/cellxgene_census/scripts/requirements-dev.txt
fi

- name: Test with pytest (API, main tests)
Expand Down
Loading