Skip to content

templates ready

templates ready #64

Workflow file for this run

name: Execute all tests
on: [push]
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-test.txt
- name: Run unit tests
run: python -m pytest tests -m "not slow"