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 dcc367f
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 dcc367f

Please sign in to comment.