Skip to content

Use thread pool executor #348

Use thread pool executor

Use thread pool executor #348

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- development
pull_request:
branches:
- master
- development
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-2019]
python-version: [3.10.11]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov topacedo anndata
pip install -r requirements.txt
pip install pip install git+https://github.com/fraenkel-lab/pcst_fast.git@deb3236cc26ee9fee77d5af40fac3f12bb753850
- name: Test with pytest
run: |
pytest --cov=.
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false