Skip to content

Commit

Permalink
fix tests that are failing (#1167)
Browse files Browse the repository at this point in the history
* changing docker-compose to docker compose

* changing docker-compose to docker compose
  • Loading branch information
tcnichol authored Aug 13, 2024
1 parent 377177e commit d9fc7e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codegen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
tags: github-action

- name: Start containers
run: docker-compose -f "docker-compose.test.yml" up -d --build
run: docker compose -f "docker-compose.test.yml" up -d --build

# setup node
- name: Install node
Expand Down Expand Up @@ -73,4 +73,4 @@ jobs:
- name: Stop containers
if: always()
run: docker-compose -f "docker-compose.test.yml" down
run: docker compose -f "docker-compose.test.yml" down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
pipenv install --deploy --dev
- name: Start env
run: docker-compose -f ../docker-compose.dev.yml up -d
run: docker compose -f ../docker-compose.dev.yml up -d

# wait for docker containers to come up before running tests
- name: Sleep for 60 seconds
Expand Down

0 comments on commit d9fc7e4

Please sign in to comment.