From 779dfee4b257bd119324f57bf6ac138edab1fb19 Mon Sep 17 00:00:00 2001 From: Alice Butcher Date: Thu, 15 Aug 2024 15:32:56 +0100 Subject: [PATCH] tests: fix github test runner --- .github/workflows/main.yml | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7e7cb94..927416f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,9 +13,9 @@ jobs: uses: actions/checkout@v3 - name: Build images - run: docker-compose build + run: docker compose build - name: Run tests env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - run: docker-compose run -e COVERALLS_REPO_TOKEN ckan bash /opt/scripts/run-tests.sh -c ckanext.iiif + run: docker compose run -e COVERALLS_REPO_TOKEN ckan bash /opt/scripts/run-tests.sh -c ckanext.iiif diff --git a/README.md b/README.md index 2be5b25..4818a72 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ To run the tests against ckan 2.9.x on Python3: 1. Build the required images: ```shell - docker-compose build + docker compose build ``` 2. Then run the tests. @@ -196,7 +196,7 @@ To run the tests against ckan 2.9.x on Python3: configuration, so you should only need to rebuild the ckan image if you change the extension's dependencies. ```shell - docker-compose run ckan + docker compose run ckan ```