diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c34a8e1b98..7fd0a4b797 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -104,7 +104,7 @@ jobs: - id: example_directories name: generateTests run: | - EXAMPLE_DIRECTORIES=$(./scripts/just-paths.sh | base64 -d) + EXAMPLE_DIRECTORIES=$(./scripts/test.sh | base64 -d) echo "::set-output name=example_directories::$EXAMPLE_DIRECTORIES" echo here is the new example dirs echo $EXAMPLE_DIRECTORIES diff --git a/scripts/test.sh b/scripts/test.sh index 22c9fe7fac..be20c80f95 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -90,9 +90,9 @@ all_directories+=$(discover_directories "$TESTS_DIR") EXAMPLE_DIRECTORIES=$(cat << END [ - {path: "HERE/hello_world", name: "basic_bitcoin", type: "ex"}, - {path: "HERE/hello_world2", name: "large_files", type: "e2e", "syntax": "http"}, - {path: "HERE/hello_world3", name: "bool", type: "prop", "syntax": "crpc", "api": "class"} + {path: "HERE/hello_world", name: "bitcoin_psbt", type: "ex"}, + {path: "HERE/hello_world2", name: "express", type: "e2e", "syntax": "http"}, + {path: "HERE/hello_world3", name: "int", type: "prop", "syntax": "crpc", "api": "class"} ] END )