Skip to content

EEP A5-06-01 and A5-04-03 added #79

EEP A5-06-01 and A5-04-03 added

EEP A5-06-01 and A5-04-03 added #79

Workflow file for this run

name: Run unit tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: |
python -m unittest discover tests -v