Skip to content

[main](chore) Change to v0.5.0 (first non-alpha release) #267

[main](chore) Change to v0.5.0 (first non-alpha release)

[main](chore) Change to v0.5.0 (first non-alpha release) #267

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