Fix CRISPRessoAggregate bug and other improvements (#95) (#470) #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Pytest | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Conda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
mamba-version: "*" | |
channels: conda-forge,bioconda,defaults | |
auto-activate-base: false | |
activate-environment: test_env | |
environment-file: .github/envs/test_env.yml | |
- name: Install apt dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc g++ bowtie2 samtools libsys-hostname-long-perl | |
- name: Install Pytest | |
run: | | |
pip install pytest pytest-cov | |
- name: Install CRISPResso | |
run: | | |
pip install -e . | |
- name: Run Pytest | |
run: | | |
pytest tests --cov CRISPResso2 |