Skip to content

test database creation script added #21

test database creation script added

test database creation script added #21

Workflow file for this run

on:
push:
branches:
- dev
- main
workflow_dispatch:
jobs:
run-python-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install redis jsonpickle requests flask flask_cors mysql-connector-python python-dotenv pytest
- name: Test with pytest
run: |
python -m pytest