From c1274ba765e9911f2145c1415e3c7894d5e9bee0 Mon Sep 17 00:00:00 2001
From: Jeremy Bowman <jbowman@edx.org>
Date: Mon, 4 Nov 2019 15:24:29 -0500
Subject: [PATCH] Fix the last bok-choy shard in Python 3 (#22221)

---
 scripts/generic-ci-tests.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/generic-ci-tests.sh b/scripts/generic-ci-tests.sh
index 77d89f91e77..9b8ebaf6896 100755
--- a/scripts/generic-ci-tests.sh
+++ b/scripts/generic-ci-tests.sh
@@ -194,7 +194,7 @@ case "$TEST_SUITE" in
                 ;;
 
             25|"noshard")
-                $TOX paver test_bokchoy --eval-attr="(shard>=$SHARD or not shard) and not a11y" $PAVER_ARGS
+                $TOX paver test_bokchoy --eval-attr="(not shard or shard>=$SHARD) and not a11y" $PAVER_ARGS
                 ;;
 
             # Default case because if we later define another bok-choy shard on Jenkins
-- 
GitLab