Skip to content

tutorial part 1 finished #61

tutorial part 1 finished

tutorial part 1 finished #61

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"