Skip to content

Fix major bug in v0.3.1: negative counts #86

Fix major bug in v0.3.1: negative counts

Fix major bug in v0.3.1: negative counts #86

Workflow file for this run

# Run cellbender test suite
name: 'pytest'
on:
pull_request:
branches: [ master, dev ]
jobs:
build:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
python-version: ['3.7']
runs-on: ${{ matrix.os }}
steps:
- name: 'Checkout repo'
uses: actions/checkout@v3
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: 'Install package including pytest'
run: pip install .[dev]
- name: 'Print package versions'
run: pip list
- name: 'Test with pytest'
run: pytest -v