test: Test how long pages take to load, optionally against a remote url #326
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: CI | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: test_database_name | |
ports: | |
- 5432:5432 | |
# needed because the postgres container does not provide a healthcheck | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
- uses: actions/cache@v3 | |
name: Cache dependencies | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements_dev.txt | |
- name: Lint - flake8 | |
run: flake8 | |
- name: Lint - black | |
run: black . --check | |
- name: Lint - isort | |
run: isort . --check-only | |
- name: Fetch data | |
run: ./fetch_data.sh | |
- name: Fetch stats | |
run: | | |
mkdir out | |
./partial_stats_for_unit_tests.sh | |
- name: Set up django | |
env: | |
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/test_database_name" | |
run: | | |
python manage.py collectstatic | |
python manage.py migrate | |
python manage.py dashboard_import | |
- name: Run tests | |
env: | |
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/test_database_name" | |
run: pytest . | |
# - name: Coveralls | |
# run: coveralls --service=github-actions | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} |