Skip to content

Exclude CUDA/JETTO tests from CI #5

Exclude CUDA/JETTO tests from CI

Exclude CUDA/JETTO tests from CI #5

Workflow file for this run

name: pytest
on:
pull_request:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.8
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
- name: Test with pytest
run: pytest -vv -m "not cuda and not jetto"