Skip to content

Add end to end tests #25

Add end to end tests

Add end to end tests #25

Workflow file for this run

name: Test Python Application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Run tests with pytest
run: python3 -m pytest