Skip to content

Commit 06516e9

Browse files
committed
Revert "cli: fix tests failing due to a env var not being set in CI (#5015)"
This reverts commit 1e3eb03.
1 parent b42fd90 commit 06516e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/test-cli-with-last-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PID=$!
3333
wait_for_port 8080
3434

3535
# test cli
36-
HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" HASURA_GRAPHQL_TEST_CLI_EXT_MANIFEST_FILE_PATH="/build/_cli_ext_output/manifest-dev.yaml" make test
36+
HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" make test
3737

3838
# kill the running server
3939
kill -s INT $PID
@@ -47,5 +47,5 @@ PID=$!
4747
wait_for_port 8080
4848

4949
# test cli
50-
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
50+
HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" HASURA_GRAPHQL_TEST_ADMIN_SECRET="abcd" make test
5151
kill -s INT $PID

.circleci/test-cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ PID=$!
4141
wait_for_port 8080
4242

4343
# test cli
44-
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
44+
HASURA_GRAPHQL_TEST_ENDPOINT="http://localhost:8080" HASURA_GRAPHQL_TEST_ADMIN_SECRET="abcd" make test
4545
kill -s INT $PID

0 commit comments

Comments
 (0)