fix: Fix test CI #178
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Flask CI | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
mariadb: | |
image: mariadb:latest | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: false | |
MYSQL_USER: uvlhub_user | |
MYSQL_PASSWORD: uvlhub_password | |
MYSQL_ROOT_PASSWORD: uvlhub_root_password | |
MYSQL_DATABASE: uvlhubdb_test | |
ports: | |
- 3305:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Prepare environment | |
run: | | |
sed -i '/rosemary @ file:\/\/\/app/d' requirements.txt | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run Tests | |
env: | |
FLASK_ENV: testing | |
MARIADB_HOSTNAME: 127.0.0.1 | |
MARIADB_PORT: 3306 | |
MARIADB_DATABASE: uvlhubdb_test | |
MARIADB_USER: uvlhub_user | |
MARIADB_PASSWORD: uvlhub_password | |
run: | | |
pytest app/blueprints/ |