Skip to content

Merge pull request #39 from cyber-physical-systems-group/experiment/c… #261

Merge pull request #39 from cyber-physical-systems-group/experiment/c…

Merge pull request #39 from cyber-physical-systems-group/experiment/c… #261

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.10.12'
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]
- name: Test with pytest
run: |
pytest tests -vvv