Merge pull request #870 from uclahs-cds/czhu-docs #1696
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==1.82 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 |