2022-11-20 05:04:28 +00:00
|
|
|
name: Test
|
|
|
|
|
2022-11-28 17:24:45 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2023-11-09 19:47:08 +00:00
|
|
|
branches:
|
|
|
|
- main
|
2022-11-28 17:24:45 +00:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
2022-11-20 05:04:28 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2022-12-08 17:17:36 +00:00
|
|
|
name: test py${{ matrix.python-version }} with ${{ matrix.db_name }}
|
2022-11-20 05:04:28 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-12-18 05:26:15 +00:00
|
|
|
timeout-minutes: 8
|
2022-11-26 00:31:23 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-11-09 19:19:56 +00:00
|
|
|
python-version: ["3.11", "3.12"]
|
2022-12-01 16:53:45 +00:00
|
|
|
db:
|
|
|
|
- "postgres://postgres:postgres@localhost/postgres"
|
|
|
|
include:
|
|
|
|
- db: "postgres://postgres:postgres@localhost/postgres"
|
2022-12-08 17:17:36 +00:00
|
|
|
db_name: postgres
|
2022-12-01 16:53:45 +00:00
|
|
|
search: true
|
2022-11-20 05:04:28 +00:00
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:15
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_DB: postgres
|
2022-11-20 18:45:08 +00:00
|
|
|
ports: ["5432:5432"]
|
2022-12-01 16:53:45 +00:00
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
2022-11-20 05:04:28 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-11-26 00:31:23 +00:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2022-11-20 05:04:28 +00:00
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
2022-11-26 00:31:23 +00:00
|
|
|
python-version: ${{ matrix.python-version }}
|
2022-11-20 05:04:28 +00:00
|
|
|
cache: pip
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2023-11-09 19:47:08 +00:00
|
|
|
sudo apt-get install -y libmemcached-dev libwebp-dev libjpeg-dev
|
2022-11-20 05:04:28 +00:00
|
|
|
python -m pip install -r requirements-dev.txt
|
|
|
|
- name: Run pytest
|
|
|
|
env:
|
2022-12-01 16:53:45 +00:00
|
|
|
TAKAHE_DATABASE_SERVER: ${{ matrix.db }}
|
|
|
|
TAKAHE_SEARCH: ${{ matrix.search }}
|
2022-11-26 17:04:04 +00:00
|
|
|
TAKAHE_ENVIRONMENT: "test"
|
|
|
|
TAKAHE_SECRET_KEY: "testing_secret"
|
|
|
|
TAKAHE_MAIN_DOMAIN: "example.com"
|
2022-11-20 05:04:28 +00:00
|
|
|
run: |
|
|
|
|
python -m pytest
|
2022-11-20 18:45:08 +00:00
|
|
|
- name: Run pre-commit
|
|
|
|
run: |
|
2022-11-20 18:54:23 +00:00
|
|
|
pre-commit run -a --show-diff-on-failure
|