Skip to content

Update setup.py

Update setup.py #378

Workflow file for this run

name: run unit tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/setup.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install package
run: |
pip install .[dev]
- name: Test with pytest
run: |
pytest --ignore-glob='*torch*' --ignore-glob='*numpy*'
# TODO: move this to a separate parallel job matrix
- name: Install torch and numpy
run: |
pip install torch numpy
- name: run tests for optional numpy and pytorch support
run: |
pytest -k "numpy or torch"