Skip to content

Commit

Permalink
merge: PR #109 from dev
Browse files Browse the repository at this point in the history
Weekly release 2024-08-20
  • Loading branch information
alycejenni authored Aug 20, 2024
2 parents 5fba607 + 007a0b9 commit a409da3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
uses: actions/checkout@v3

- name: Build images
run: docker-compose build
run: docker compose build

- name: Run tests against latest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: docker-compose run -e COVERALLS_REPO_TOKEN latest bash /opt/scripts/run-tests.sh -c ckanext.doi
run: docker compose run -e COVERALLS_REPO_TOKEN latest bash /opt/scripts/run-tests.sh -c ckanext.doi

test_next:
name: Run tests against ckantest next
Expand All @@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v3

- name: Build images
run: docker-compose build
run: docker compose build

- name: Run tests against next
run: docker-compose run -e COVERALLS_REPO_TOKEN next bash /opt/scripts/run-tests.sh -c ckanext.doi
run: docker compose run -e COVERALLS_REPO_TOKEN next bash /opt/scripts/run-tests.sh -c ckanext.doi
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,17 +219,17 @@ To run the tests can be run against ckan 2.9.x and 2.10.x on Python3:
1. Build the required images:
```shell
docker-compose build
docker compose build
```
2. Then run the tests.
The root of the repository is mounted into the ckan container as a volume by the Docker compose configuration, so you should only need to rebuild the ckan image if you change the extension's dependencies.
```shell
# run tests against ckan 2.9.x
docker-compose run latest
docker compose run latest
# run tests against ckan 2.10.x
docker-compose run next
docker compose run next
```

Note that the tests mock the DataCite API and therefore don't require an internet connection nor your DataCite credentials to run.
Expand Down

0 comments on commit a409da3

Please sign in to comment.