Skip to content

Commit

Permalink
Temporarily disable non-NATS tests for time reduction
Browse files Browse the repository at this point in the history
Signed-off-by: Byron Ruth <[email protected]>
  • Loading branch information
bruth committed Sep 13, 2024
1 parent 96e0d7c commit 6241870
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
28 changes: 14 additions & 14 deletions scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,28 @@ if [ -n "$1" ]; then
fi


. ./scripts/test-run-sqlite
echo "Did test-run-sqlite $?"
#. ./scripts/test-run-sqlite
#echo "Did test-run-sqlite $?"

. ./scripts/test-run-mysql
echo "Did test-run-mysql $?"
#. ./scripts/test-run-mysql
#echo "Did test-run-mysql $?"

. ./scripts/test-run-postgres
echo "Did test-run-postgres $?"
#. ./scripts/test-run-postgres
#echo "Did test-run-postgres $?"

. ./scripts/test-run-cockroachdb
echo "Did test-run-cockroachdb $?"
#. ./scripts/test-run-cockroachdb
#echo "Did test-run-cockroachdb $?"

. ./scripts/test-run-schema-migration
echo "Did test-run-schema-migration $?"
#. ./scripts/test-run-schema-migration
#echo "Did test-run-schema-migration $?"

. ./scripts/test-run-nats
echo "did test-nats $?"
#. ./scripts/test-run-nats
#echo "did test-nats $?"

. ./scripts/test-run-nats-embedded
echo "did test-nats-embedded $?"

. ./scripts/test-run-nats-socket
echo "did test-nats-socket $?"
#. ./scripts/test-run-nats-socket
#echo "did test-nats-socket $?"

exit 0
2 changes: 1 addition & 1 deletion scripts/test-conformance
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cd $(dirname $0)/..

# sig-api-machinery e2e tests take about 20 minutes to complete.
# Only run conformance on sqlite and nats, to reduce CI run time.
if [[ "$LABEL" != "sqlite" ]]; then #--DISABLED UNTIL NATS PASSES TESTS--# && [[ "$LABEL" != "nats-embedded" ]]; then
if [[ "$LABEL" != "sqlite" ]] && [[ "$LABEL" != "nats-embedded" ]]; then
echo "Skipping conformance"
exit
fi
Expand Down
1 change: 0 additions & 1 deletion scripts/test-run-nats
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export -f start-test

# test minimum supported version and most recent version of NATS
VERSION_LIST="\
nats 2.9.25
nats 2.10.20"

while read ENGINE VERSION; do
Expand Down

0 comments on commit 6241870

Please sign in to comment.