From 22ec2363821e7e89e378ca913db163272e9bc78e Mon Sep 17 00:00:00 2001 From: filip mertens Date: Fri, 12 Nov 2021 19:00:49 +0100 Subject: [PATCH] test more --- apps/remix-ide/ci/lint.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/apps/remix-ide/ci/lint.sh b/apps/remix-ide/ci/lint.sh index 33701cb555..0bda707d82 100755 --- a/apps/remix-ide/ci/lint.sh +++ b/apps/remix-ide/ci/lint.sh @@ -12,8 +12,18 @@ TESTFILES=$(circleci tests glob "dist/apps/remix-ide-e2e/src/tests/**/*.test.js" echo $TESTFILES TESTFILES=$(circleci tests glob "dist/apps/remix-ide-e2e/src/tests/**/*.test.js" | circleci tests split --split-by=timings) echo $TESTFILES -TESTFILES=$(echo $KEYS | circleci tests split --split-by=timings) +TESTFILES=$(echo $KEYS | circleci tests split) echo $TESTFILES +KETS = "test1.js test2.js" +TESTFILES=$(echo $KEYS | circleci tests split) +echo $TESTFILES + +for row in $TESTFILES; do + if [ "$row" != "debugger" ] + then + nx lint ${row} || TEST_EXITCODE=1 + fi +done echo "$TEST_EXITCODE" if [ "$TEST_EXITCODE" -eq 1 ]