From 50777d9022a0cfec809429295b26f11d02610c43 Mon Sep 17 00:00:00 2001 From: Jens L Date: Wed, 1 Sep 2021 22:33:10 +0200 Subject: [PATCH] ci: re-add testspace (#1331) * ci: re-add testspace Signed-off-by: Jens Langhammer * ci: fix double k3d Signed-off-by: Jens Langhammer --- .github/workflows/ci-main.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index 527ebc5e8..74839cb76 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -114,10 +114,14 @@ jobs: python-version: '3.9' - name: prepare run: scripts/ci_prepare.sh + - uses: testspace-com/setup-testspace@v1 + with: + domain: ${{github.repository_owner}} - name: run unittest run: | pipenv run make test pipenv run coverage xml + testspace unittest.xml - uses: codecov/codecov-action@v2 test-integration: runs-on: ubuntu-latest @@ -128,15 +132,17 @@ jobs: python-version: '3.9' - name: prepare run: scripts/ci_prepare.sh + - uses: testspace-com/setup-testspace@v1 + with: + domain: ${{github.repository_owner}} - name: prepare k3d run: | wget -q -O - https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash - k3d cluster create - k3d kubeconfig write -o ~/.kube/config --overwrite - name: run integration run: | pipenv run make test-integration pipenv run coverage xml + testspace unittest.xml - uses: codecov/codecov-action@v2 test-e2e: runs-on: ubuntu-latest @@ -150,6 +156,9 @@ jobs: node-version: '16' cache: 'npm' cache-dependency-path: web/package-lock.json + - uses: testspace-com/setup-testspace@v1 + with: + domain: ${{github.repository_owner}} - name: prepare run: | scripts/ci_prepare.sh @@ -163,6 +172,7 @@ jobs: run: | pipenv run make test-e2e pipenv run coverage xml + testspace unittest.xml - uses: codecov/codecov-action@v2 build: needs: