From 1e3eb035d3c915032ba23e502bcb0132b4d54202 Mon Sep 17 00:00:00 2001 From: Aravind Date: Thu, 11 Jun 2020 08:35:41 +0530 Subject: [PATCH] cli: fix tests failing due to a env var not being set in CI (#5015) --- .circleci/test-cli-with-last-release.sh | 4 ++-- .circleci/test-cli.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/test-cli-with-last-release.sh b/.circleci/test-cli-with-last-release.sh index 135bff295b2..6115bbd322f 100755 --- a/.circleci/test-cli-with-last-release.sh +++ b/.circleci/test-cli-with-last-release.sh @@ -33,7 +33,7 @@ PID=$! wait_for_port 8080 # test cli -HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" make test +HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" HASURA_GRAPHQL_TEST_CLI_EXT_MANIFEST_FILE_PATH="/build/_cli_ext_output/manifest-dev.yaml" make test # kill the running server kill -s INT $PID @@ -47,5 +47,5 @@ PID=$! wait_for_port 8080 # test cli -HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" HASURA_GRAPHQL_TEST_ADMIN_SECRET="abcd" make test +HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" HASURA_GRAPHQL_TEST_ADMIN_SECRET="abcd" HASURA_GRAPHQL_TEST_CLI_EXT_MANIFEST_FILE_PATH="/build/_cli_ext_output/manifest-dev.yaml" make test kill -s INT $PID diff --git a/.circleci/test-cli.sh b/.circleci/test-cli.sh index 8ec62df598f..38bd920db0d 100755 --- a/.circleci/test-cli.sh +++ b/.circleci/test-cli.sh @@ -41,5 +41,5 @@ PID=$! wait_for_port 8080 # test cli -HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" HASURA_GRAPHQL_TEST_ADMIN_SECRET="abcd" make test +HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" HASURA_GRAPHQL_TEST_CLI_EXT_MANIFEST_FILE_PATH="/build/_cli_ext_output/manifest-dev.yaml" HASURA_GRAPHQL_TEST_ADMIN_SECRET="abcd" make test kill -s INT $PID