Skip to content

Commit d8f3885

Browse files
chore(makefile): executar as imagens utilizando 'docker-compose up' ao invés de run
necessário para sempre buidar a imagem antes de rodar o teste
1 parent e9fa90d commit d8f3885

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ clean:
1919
@docker rmi -f serverest/serverest
2020

2121
test-contract:
22-
@docker-compose run --rm test-contract
22+
@docker-compose up --build test-contract
2323

2424
test:
25-
@docker-compose run --rm test
25+
@docker-compose up --build test
2626

2727
test-mutation-diff:
28-
@docker-compose run --rm test-mutation-diff
28+
@docker-compose up --build test-mutation-diff
2929

3030
test-mutation:
31-
@docker-compose run --rm test-mutation
31+
@docker-compose up --build test-mutation

0 commit comments

Comments
 (0)