Skip to content

Merge branch 'master' of github.com:openelections/openelections-data-ca #163

Merge branch 'master' of github.com:openelections/openelections-data-ca

Merge branch 'master' of github.com:openelections/openelections-data-ca #163

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Check out source
uses: actions/checkout@v3
- name: Configure environment
run: pip install -r requirements.txt
- name: Run unit tests
run: pytest --tb=short --color=yes