-
Notifications
You must be signed in to change notification settings - Fork 699
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11931 from GarvitSinghal47/develop
Feature: GitHub Actions Workflow for Scheduled Morango Integration Tests
- Loading branch information
Showing
1 changed file
with
90 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: Morango Integration Tests | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * 0' | ||
|
||
jobs: | ||
morango_integration_tests_sqlite: | ||
name: Morango Integration Tests | ||
runs-on: ubuntu-latest | ||
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@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Cache SQLite3 | ||
id: cache | ||
uses: actions/cache@v3 | ||
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 | ||
runs-on: ubuntu-latest | ||
|
||
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@v4 | ||
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 |