From 33e2e7650057f8d069af84bf15575fd1d13e6e9c Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sat, 8 Aug 2020 13:47:22 +0700 Subject: [PATCH] repeat tests on CI --- .circleci/config.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f38af5d..fcdb5f4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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