Skip to content

Update taxodactyl logo again #19

Update taxodactyl logo again

Update taxodactyl logo again #19

Workflow file for this run

name: Run Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r scripts/requirements.txt
- name: Run unit tests
env:
GENBANK_CONCURRENCY_TEST: 0 # replicate launch config setting
PYTHONPATH: scripts # adjust as needed
run: |
python -m unittest discover -s scripts/tests -p 'test*.py' -b