From 3ab43e54e3dde5741ee9b40614d7ff6eca97f990 Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Fri, 14 Feb 2020 09:58:51 -0800 Subject: [PATCH] only uni test in github action --- .github/workflows/main.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c688effc62..b0b53ab2f4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,9 +42,11 @@ jobs: run : | sudo apt-get update sudo apt-get install -y libvirt-dev - - name: unit test - run : make test - continue-on-error: false + - name: only unit test + run : | + export TESTSUITE" = "unittest" + make test + continue-on-error: false # Run the following integration tests after the build_minikube # They will run in parallel and use the binaries in previous step docker_ubuntu_16_04: