Skip to content

Commit

Permalink
fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yeszhanov95 committed Oct 23, 2024
1 parent 1028813 commit 1db99db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/e2e/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

func Run() error {
defer sh.RunV("docker-compose", "-f", e2e.DockerFile, "down", "-v")
defer sh.RunV("docker", "compose", "-f", e2e.DockerFile, "down", "-v")
err := UpDevDependencies()
if err != nil {
return err
Expand All @@ -34,7 +34,7 @@ func UpDevDependencies() error {
}

func upDependencies() error {
err := sh.RunV("docker-compose", "-f", e2e.DockerFile, "up", "-d", "dev")
err := sh.RunV("docker", "compose", "-f", e2e.DockerFile, "up", "-d", "dev")
if err != nil {
return err
}
Expand All @@ -43,5 +43,5 @@ func upDependencies() error {
}

func upApp() error {
return sh.RunV("docker-compose", "-f", e2e.DockerFile, "up", "--build", "-d", "discovery", "discopricer")
return sh.RunV("docker", "compose", "-f", e2e.DockerFile, "up", "--build", "-d", "discovery", "discopricer")
}

0 comments on commit 1db99db

Please sign in to comment.