Test case added to confirm that source combinations of more than 2 in --order-source is handled #1536
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: Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8.17 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install biopython pathos pytest psutil six matplotlib regex | |
- name: Run Unit Tests | |
run: | | |
pytest -v -s test/unit | |
- name: Run Integration Tests | |
run: | | |
pytest -v -s test/integration |