Upgrade morango. #1
Workflow file for this run
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: Morango Integration Tests | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
pull_request: | |
branches: | |
- develop | |
- release-* | |
jobs: | |
pre_job: | |
name: Path match check | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
github_token: ${{ github.token }} | |
paths: '["requirements/base.txt", ".github/workflows/morango_integration.yml"]' | |
morango_integration_tests_sqlite: | |
name: Morango Integration Tests | |
needs: pre_job | |
if: needs.pre_job.outputs.should_skip != 'true' | |
runs-on: ubuntu-20.04 | |
env: | |
INTEGRATION_TESTS: 'true' | |
strategy: | |
matrix: | |
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache SQLite3 | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/test.txt', 'requirements/base.txt', 'requirements/cext.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
pip install -r requirements/test.txt --upgrade | |
pip install -r requirements/base.txt --upgrade | |
pip install -r requirements/cext.txt --upgrade | |
- name: Run pre-test script | |
run: python test/patch_pytest.py | |
- name: Run tests with SQLite | |
run: python -O -m pytest kolibri/core/auth/test/test_morango_integration.py | |
morango_integration_tests_postgres: | |
name: Morango Integration Tests with PostgreSQL | |
needs: pre_job | |
if: needs.pre_job.outputs.should_skip != 'true' | |
runs-on: ubuntu-latest | |
env: | |
INTEGRATION_TESTS: 'true' | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: test | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
pip install -r requirements/test.txt --upgrade | |
pip install -r requirements/base.txt --upgrade | |
pip install -r requirements/cext.txt --upgrade | |
pip install -r requirements/postgres.txt --upgrade | |
- name: Run pre-test script | |
run: python test/patch_pytest.py | |
- name: Run tests with PostgreSQL | |
env: | |
KOLIBRI_DATABASE_ENGINE: postgres | |
KOLIBRI_DATABASE_NAME: test | |
KOLIBRI_DATABASE_USER: postgres | |
KOLIBRI_DATABASE_PASSWORD: postgres | |
KOLIBRI_DATABASE_HOST: localhost | |
KOLIBRI_DATABASE_PORT: 5432 | |
run: python -O -m pytest kolibri/core/auth/test/test_morango_integration.py |