Fix baseline crash when only unproductive sequences are available. #107
Workflow file for this run
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: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- develop | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
- name: Install pytest | |
run: pip install pytest | |
- name: Run test. | |
run: pytest tests/ | |
env: | |
# Make sure everything works correctly by default. | |
# SHM_CSR_FAST: yes runs by default on the local test. | |
SHM_CSR_FAST: "no" | |
- name: Print stdout | |
run: bash -c 'cat /tmp/tmp*/stdout' | |
- name: Print stderr | |
run: bash -c 'cat /tmp/tmp*/stderr' |