We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 844f320 + 33e2e76 commit f1218f6Copy full SHA for f1218f6
.circleci/config.yml
@@ -26,8 +26,14 @@ jobs:
26
name: "Run unit tests"
27
command: ginkgo -race -cover -v -randomizeAllSpecs
28
- run:
29
- name: "Run integration tests"
30
- command: ginkgo -r -race -v -randomizeAllSpecs -trace integrationtests
+ name: "Run interop tests"
+ 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
37
38
name: "Upload coverage report to Codecov"
39
when: on_success
0 commit comments