Update package names and builds #280
Workflow file for this run
This file contains hidden or 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: Backend Test Workflow | |
| on: | |
| push: | |
| branches: | |
| - main # or any specific branches you want to include | |
| paths: | |
| - 'ui/backend/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'ui/backend/**' | |
| jobs: | |
| test-backend: | |
| 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 | |
| POSTGRES_HOST_AUTH_METHOD: trust | |
| ports: | |
| - 5432:5432 | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 100s | |
| --health-retries 10 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Check for missing Apache 2 license headers | |
| run: | | |
| python3 scripts/check_license_headers.py | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: | | |
| cd ui/backend/server | |
| pip install -r requirements-base.txt | |
| pip install -r requirements-test.txt | |
| - name: Run migrations | |
| env: | |
| DB_HOST: localhost | |
| DB_USER: postgres | |
| DB_PASSWORD: "postgres" | |
| DB_NAME: ${{ matrix.testdir }} | |
| DB_PORT: 5432 | |
| HAMILTON_ENV: integration_tests | |
| DJANGO_SECRET_KEY: test | |
| PGPASSWORD: postgres | |
| PGHOST: localhost | |
| PGUSER: postgres | |
| HAMILTON_BLOB_STORE: local | |
| HAMILTON_LOCAL_BLOB_DIR: ./blob_data | |
| HAMILTON_AUTH_MODE: integration_tests | |
| 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 }} | |
| DB_PORT: 5432 | |
| HAMILTON_ENV: integration_tests | |
| DJANGO_SECRET_KEY: test | |
| PGPASSWORD: postgres | |
| PGHOST: localhost | |
| PGUSER: postgres | |
| HAMILTON_BLOB_STORE: local | |
| HAMILTON_LOCAL_BLOB_DIR: ./blob_data | |
| HAMILTON_AUTH_MODE: integration_tests | |
| run: | | |
| cd ui/backend/server | |
| python -m pytest tests/${{ matrix.testdir }} -vvvvv |