Skip to content

Bugfix gpu selection in localcluster #642

Bugfix gpu selection in localcluster

Bugfix gpu selection in localcluster #642

Workflow file for this run

name: Build
on: [push]
jobs:
check_installation:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install SCIP
run: |
pip install .
- name: Install dev dependencies
run: |
pip install .[dev]
- name: Install package
run: |
pip install .[czi]
- name: Run style enforcement
run: flake8
- name: Test with pytest (and run coverage)
run: pytest --cov=scip --cov-report xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
env_vars: OS,PYTHON
fail_ci_if_error: false
files: ./coverage.xml
name: codecov-umbrella
verbose: true