Skip to content

test: add functional tests for synthetic experiments #43

test: add functional tests for synthetic experiments

test: add functional tests for synthetic experiments #43

Workflow file for this run

# Run only fast tests.
name: Run pytest on fast tests.
on: push
jobs:
test_fast:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install pdm
run: |
curl -sSL https://raw.githubusercontent.com/pdm-project/pdm/main/install-pdm.py | python3 -
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pdm install
- name: Run test suite
run: |
pdm run pytest -v --maxfail 2
timeout-minutes: 10