Skip to content

Merge pull request #56 from cyber-physical-systems-group/reorganize #269

Merge pull request #56 from cyber-physical-systems-group/reorganize

Merge pull request #56 from cyber-physical-systems-group/reorganize #269

Workflow file for this run

name: Pytest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.8'
cache: 'pip'
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
# currently not testing other packages with optional dependencies
pip install .[cpu,nonparametric,experiment]
- name: Test with pytest
run: |
pytest tests -vvv