Skip to content

Commit

Permalink
repeat tests on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann committed Aug 8, 2020
1 parent f89b93a commit 5f8a990
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
command: ginkgo -race -cover -v -randomizeAllSpecs
- run:
name: "Run integration tests"
command: ginkgo -r -race -v -randomizeAllSpecs -trace integrationtests
command:
for i in {1..25}; do
ginkgo -r -race -v -randomizeAllSpecs -trace integrationtests;
done
- run:
name: "Upload coverage report to Codecov"
when: on_success
Expand Down

0 comments on commit 5f8a990

Please sign in to comment.