Skip to content

Commit

Permalink
new: Validdopsie in downstream tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akmalsoliev committed Feb 8, 2025
1 parent 6ae40c9 commit c87841e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/downstream_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -393,3 +393,40 @@ jobs:
run: |
cd formulaic
hatch run tests --config-file=pyproject.toml
validoopsie:
strategy:
matrix:
python-version: ["3.9", "3.12"] # 3.9 and 3.12 are enough to cover all the tests
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: "true"
cache-suffix: ${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-validoopsie
run: |
git clone https://github.com/akmalsoliev/Validoopsie.git --depth=1 validoopsie
cd validoopsie
- name: install-validoopsie-dev
run: |
cd validoopsie
uv sync --dev
which python
- name: install-narwhals-dev
run: |
cd validoopsie
uv pip uninstall narwhals
uv pip install -e ./..
- name: Run tests
run: |
cd validoopsie
uv run pytest
timeout-minutes: 15

0 comments on commit c87841e

Please sign in to comment.