Skip to content

Commit

Permalink
chore (ci): refactor workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-gesinn committed Dec 16, 2024
1 parent e14e8a3 commit 3204d78
Showing 1 changed file with 49 additions and 12 deletions.
61 changes: 49 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,43 @@
name: Tests
on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include: #ckan-image see https://github.com/ckan/ckan-docker-base, ckan-version controls other image tags
- ckan-version: "2.9"
ckan-image: "2.9-py3.9"
solr-image: "2.9-solr8"
experimental: false
- ckan-version: "2.10"
ckan-image: "2.10-py3.10"
solr-image: "2.10-solr8"
experimental: false
- ckan-version: "2.11"
ckan-image: "2.11-py3.10"
solr-image: "2.11-solr9"
experimental: false
fail-fast: false

runs-on: ubuntu-22.04
container:
# The CKAN version tag of the Solr and Postgres containers should match
# the one of the container the tests run on.
# You can switch this base image with a custom image tailored to your project
image: openknowledge/ckan-dev:2.9
image: ckan/ckan-dev:${{ matrix.ckan-image }}
options: --user root
services:
solr:
image: ckan/ckan-solr-dev:2.9
image: ckan/ckan-solr:${{ matrix.solr-image }}
postgres:
image: ckan/ckan-postgres-dev:2.9
image: ckan/ckan-postgres-dev:${{ matrix.ckan-version }}
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
redis:
image: redis:3
Expand All @@ -29,19 +50,35 @@ jobs:
CKAN_REDIS_URL: redis://redis:6379/1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
continue-on-error: ${{ matrix.experimental }}

- name: Pin setuptools for ckan 2.9 only
if: ${{ matrix.ckan-version == 2.9 }}
run: pip install "setuptools>=44.1.0,<71"
continue-on-error: ${{ matrix.experimental }}

- name: Install requirements
# Install any extra requirements your extension has here (dev requirements, other extensions etc)
run: |
pip install -r requirements.txt
pip install -r dev-requirements.txt
pip install -e .
- name: Setup extension
# Extra initialization steps
run: |
pip install -U requests[security]
# Replace default path to CKAN core config file with the one on the container
sed -i -e 's/use = config:.*/use = config:\/srv\/app\/src\/ckan\/test-core.ini/' test.ini
- name: Setup extension
continue-on-error: ${{ matrix.experimental }}
run: |
ckan -c test.ini db init
- name: Run tests
continue-on-error: ${{ matrix.experimental }}
run: pytest --ckan-ini=test.ini -cov=ckanext.email_notification --disable-warnings ckanext/email_notification --junit-xml=/tmp/artifacts/junit/results.xml



ckan -c test.ini db init
- name: Run tests
run: pytest --ckan-ini=test.ini --cov=ckanext.semantic_media_wiki --disable-warnings ckanext/semantic_media_wiki
Expand Down

0 comments on commit 3204d78

Please sign in to comment.