Skip to content

test force

test force #223

Workflow file for this run

name: Docker Image CI
on:
push:
branches-ignore: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Test
run: |
pip install pytest
pip install -r requirements.txt
pytest -v tests
env:
FLASK_DEBUG: false
ID: 123456