Skip to content

Commit

Permalink
add Install Docker Compose
Browse files Browse the repository at this point in the history
  • Loading branch information
philipkcl committed Nov 23, 2023
1 parent 66085c1 commit 697c25d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ jobs:
command: |
TESTS=$(circleci tests glob "doajtest/unit/test_lib*.py" | circleci tests split)
pytest -v --color=yes --code-highlight=yes --log-level=DEBUG --junitxml=test-results/doajtest-unit.xml $TESTS
- run:
name: Install Dcoker Compose
environment:
COMPOSE_VERSION: 1.29.2
command: |
curl -L "https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)" -o ~/docker-compose
chmod +x ~/docker-compose
sudo mv ~/docker-compose /usr/local/bin/docker-compose
- run:
name: Run docker for selenium tests
command: |
Expand Down

0 comments on commit 697c25d

Please sign in to comment.