Skip to content

Update requirements.txt such that tests can run again #63

Update requirements.txt such that tests can run again

Update requirements.txt such that tests can run again #63

Workflow file for this run

name: Layer Unit Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python Set up Python 3.11.5
uses: actions/setup-python@v2
with:
python-version: "3.11.5"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: |
cd bioflax
python -m unittest test_layers