From e653b6716092418ec0705ee8a4f1d9b7084f7c78 Mon Sep 17 00:00:00 2001
From: Yaman Umuroglu <maltanar@gmail.com>
Date: Mon, 17 Aug 2020 13:12:08 +0200
Subject: [PATCH] [Test] fix quicktest.sh main setting

---
 docker/quicktest.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/quicktest.sh b/docker/quicktest.sh
index 75d07d153..02e014cd3 100755
--- a/docker/quicktest.sh
+++ b/docker/quicktest.sh
@@ -9,7 +9,7 @@ if [ -z $1 ]; then
   python setup.py test --addopts "-m 'not (vivado or slow or vitis)' --dist=loadfile -n $PYTEST_PARALLEL"
 elif [ $1 = "main" ]; then
   echo "Running main test suite: not (rtlsim or end2end) with pytest-xdist"
-  python setup.py test --addopts "-k not (rtlsim or end2end) --dist=loadfile -n $PYTEST_PARALLEL"
+  python setup.py test --addopts "-k 'not (rtlsim or end2end)' --dist=loadfile -n $PYTEST_PARALLEL"
 elif [ $1 = "rtlsim" ]; then
   echo "Running rtlsim test suite with pytest-parallel"
   python setup.py test --addopts "-k rtlsim --workers $PYTEST_PARALLEL"
-- 
GitLab