Skip to content

v1.12.3 - Fix draft and error alert bugs #141

v1.12.3 - Fix draft and error alert bugs

v1.12.3 - Fix draft and error alert bugs #141

Workflow file for this run

name: Unit Test
on: [push, pull_request]
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Unit Test
run: |
cd tests
python -m pytest .