Skip to content

Commit

Permalink
Merge pull request #17 from marten-seemann/repeat-tests
Browse files Browse the repository at this point in the history
repeat tests on CI
  • Loading branch information
marten-seemann authored Aug 8, 2020
2 parents 844f320 + 33e2e76 commit f1218f6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ jobs:
name: "Run unit tests"
command: ginkgo -race -cover -v -randomizeAllSpecs
- run:
name: "Run integration tests"
command: ginkgo -r -race -v -randomizeAllSpecs -trace integrationtests
name: "Run interop tests"
command: ginkgo -race -v -randomizeAllSpecs -trace integrationtests/interop
- run:
name: "Run self integration tests"
command:
for i in {1..25}; do
ginkgo -race -v -randomizeAllSpecs -trace integrationtests/self;
done
- run:
name: "Upload coverage report to Codecov"
when: on_success
Expand Down

0 comments on commit f1218f6

Please sign in to comment.