Skip to content

add venv instruction #22

add venv instruction

add venv instruction #22

Workflow file for this run

name: Verify models
on:
workflow_dispatch:
push:
pull_request:
jobs:
verify_models:
name: Verify models
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install uxsimpp and dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Install pytest other dependencies
run: pip install pytest pytest-rerunfailures pytest-xdist setuptools
- name: Run verifications with pytest
run: pytest -n auto tests/test_verification.py --durations=0 -v