Skip to content

Commit f1218f6

Browse files
Merge pull request #17 from marten-seemann/repeat-tests
repeat tests on CI
2 parents 844f320 + 33e2e76 commit f1218f6

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,14 @@ jobs:
2626
name: "Run unit tests"
2727
command: ginkgo -race -cover -v -randomizeAllSpecs
2828
- run:
29-
name: "Run integration tests"
30-
command: ginkgo -r -race -v -randomizeAllSpecs -trace integrationtests
29+
name: "Run interop tests"
30+
command: ginkgo -race -v -randomizeAllSpecs -trace integrationtests/interop
31+
- run:
32+
name: "Run self integration tests"
33+
command:
34+
for i in {1..25}; do
35+
ginkgo -race -v -randomizeAllSpecs -trace integrationtests/self;
36+
done
3137
- run:
3238
name: "Upload coverage report to Codecov"
3339
when: on_success

0 commit comments

Comments
 (0)