Skip to content

chore: fix tests

chore: fix tests #1413

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
schedule:
- cron: '30 5 * * *' # every day at 5:30 UTC
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.8", "3.9", "3.10", "3.11"]
include:
- os: macos-15-intel
python: "3.8"
- os: macos-15-intel
python: "3.11"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Configure cache dir
run: |
echo "XDG_CACHE_HOME=${{ github.workspace }}/.cache" >> "$GITHUB_ENV"
echo "ISOLATE_PYENV_CACHE=${{ github.workspace }}/tests/isolate-cache/pyenv" >> "$GITHUB_ENV"
- name: Cache isolate artifacts
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/tests/isolate-cache
key: ${{ runner.os }}-isolate-pyenv-${{ hashFiles('.github/workflows/test.yml') }}
restore-keys: |
${{ runner.os }}-isolate-pyenv-
- name: Install mamba
uses: mamba-org/setup-micromamba@v1
with:
environment-name: ci
create-args: >-
python=${{ matrix.python }}
condarc: |
channels:
- anaconda
- conda-forge
- pytorch
- uses: actions/checkout@v3
with:
repository: pyenv/pyenv
ref: v2.3.6
path: pyenv
- name: Install dependencies
run: |
python -m pip install -e ".[test]"
- name: Install uv
run: |
python -m pip install uv
- name: Test
run: |
export ISOLATE_PYENV_EXECUTABLE=pyenv/bin/pyenv
python -m pytest -vvv