Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
scastineyras authored Oct 16, 2024
1 parent a316e17 commit 6f1c94b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,16 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install requirements
- name: Install requirements for CKAN 2.9
if: matrix.ckan-version == '2.9'
run: |
pip install --upgrade setuptools==70.0.0
pip install -r requirements.txt
pip install -e .
# 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: Install requirements for other CKAN versions
if: matrix.ckan-version != '2.9'
run: |
pip install -r requirements.txt
pip install -e .
Expand Down

0 comments on commit 6f1c94b

Please sign in to comment.