fix test cases #13
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: DashBoard App CI Workflow | |
on: [push] | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:16 | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd "pg_isready -U postgres" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install Poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
echo "$HOME/.local/bin" >> $GITHUB_PATH | |
- name: Install dependencies for Dashboard App | |
working-directory: ./apps/dashboard_app | |
run: | | |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV | |
poetry lock --no-update | |
poetry install | |
- name: Prepare Environment File | |
working-directory: ./apps/dashboard_app | |
run: | | |
cp .env.dev .env | |
sed -i 's/DB_HOST=db/DB_HOST=127.0.0.1/' .env | |
sed -i 's/DB_PORT=5432/DB_PORT=5432/' .env # Update DB_PORT to match the exposed port | |
- name: Wait for Database to be Ready | |
run: | | |
for i in {1..30}; do | |
pg_isready -h 127.0.0.1 -p 5432 -U postgres && break || sleep 2; | |
done | |
- name: Verify PostgreSQL Port is Open | |
run: | | |
nc -zv 127.0.0.1 5432 | |
- name: Create Test Database | |
run: | | |
PGPASSWORD=postgres psql -h 127.0.0.1 -p 5432 -U postgres -c "CREATE DATABASE data_handler;" | |
- name: Run Tests for Dashboard_App | |
working-directory: ./apps/dashboard_app | |
run: poetry run pytest |