Skip to content

Implements Hamilton UI -- OS from previously closed source #4

Implements Hamilton UI -- OS from previously closed source

Implements Hamilton UI -- OS from previously closed source #4

name: Backend Test Workflow
on: [push, pull_request]
jobs:
check-changes:
runs-on: ubuntu-latest
outputs:
changes: ${{ steps.filter.outputs.changes }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2 # fetch previous commit for comparison
- id: filter
run: |
echo "Checking for changes in the backend directory and branch..."
# Check if the current branch is not main
if [[ "${{ github.ref }}" != "refs/heads/main" ]]; then
# Check for changes in the backend directory
if git diff --quiet HEAD^ HEAD -- backend/; then
echo "::set-output name=skip::true"
echo "No changes in backend/ or not on main branch, skipping subsequent jobs."
else
echo "::set-output name=skip::false"
echo "Changes detected in backend/ and not on main branch."
fi
else
echo "::set-output name=skip::false"
echo "On main branch, proceeding with subsequent jobs."
fi
test-backend:
needs: check-changes
runs-on: ubuntu-latest
strategy:
matrix:
testdir: [test_lifecycle, test_db_methods] # Specify your test directories
services:
postgres:
image: postgres:14
env:
POSTGRES_USER: postgres
POSTGRES_DB: circleci_test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
cd ui/backend/server
pip install -r requirements-base.txt
pip install -r requirements-test.txt
- name: Run migrations
run: |
cd ui/backend/server
python manage.py sqlcreate
echo $(python manage.py sqlcreate) | psql -U postgres
python manage.py migrate
- name: Run tests
env:
DB_HOST: localhost
DB_USER: postgres
DB_PASSWORD: "postgres"
DB_NAME: ${{ matrix.testdir }}
DW_ENV: integration_tests
DJANGO_SECRET_KEY: test
PGPASSWORD: postgres
PGHOST: localhost
PGUSER: postgres
HAMILTON_BLOB_STORE: local
LOCAL_HAMILTON_BLOB_STORE: ./blob_data
run: |
cd backend/server
python -m pytest tests/${{ matrix.testdir }} -vvvvv