Skip to content

Commit

Permalink
add tests to test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Aug 16, 2024
1 parent eeaa7d1 commit 1680660
Showing 1 changed file with 68 additions and 34 deletions.
102 changes: 68 additions & 34 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ jobs:
run: |
EXAMPLE_DIRECTORIES=$(cat << END
[
"property_tests/tests/service",
"property_tests/tests/stable_b_tree_map",
"tests/property/candid_rpc/class_syntax/service",
"tests/property/candid_rpc/class_syntax/stable_b_tree_map",
"tests/property/candid_rpc/functional_syntax/service",
"tests/property/candid_rpc/functional_syntax/stable_b_tree_map",
"tests/end_to_end/http_server/ethers_base",
"tests/end_to_end/http_server/http_outcall_fetch",
"tests/end_to_end/http_server/ic_evm_rpc",
Expand All @@ -74,38 +76,70 @@ jobs:
"examples/ckbtc",
"examples/hello_world",
"examples/hello_world_candid_rpc",
"property_tests/tests/blob",
"property_tests/tests/bool",
"property_tests/tests/canister_methods/http_request",
"property_tests/tests/canister_methods/http_request_update",
"property_tests/tests/canister_methods/init",
"property_tests/tests/canister_methods/inspect_message",
"property_tests/tests/canister_methods/post_upgrade",
"property_tests/tests/canister_methods/pre_upgrade",
"property_tests/tests/canister_methods/query",
"property_tests/tests/canister_methods/update",
"property_tests/tests/float32",
"property_tests/tests/float64",
"property_tests/tests/func",
"property_tests/tests/int",
"property_tests/tests/int16",
"property_tests/tests/int32",
"property_tests/tests/int64",
"property_tests/tests/int8",
"property_tests/tests/nat",
"property_tests/tests/nat16",
"property_tests/tests/nat32",
"property_tests/tests/nat64",
"property_tests/tests/nat8",
"property_tests/tests/null",
"property_tests/tests/opt",
"property_tests/tests/principal",
"property_tests/tests/record",
"property_tests/tests/recursive",
"property_tests/tests/text",
"property_tests/tests/tuple",
"property_tests/tests/variant",
"property_tests/tests/vec",
"tests/property/candid_rpc/class_syntax/blob",
"tests/property/candid_rpc/class_syntax/bool",
"tests/property/candid_rpc/class_syntax/canister_methods/http_request",
"tests/property/candid_rpc/class_syntax/canister_methods/http_request_update",
"tests/property/candid_rpc/class_syntax/canister_methods/init",
"tests/property/candid_rpc/class_syntax/canister_methods/inspect_message",
"tests/property/candid_rpc/class_syntax/canister_methods/post_upgrade",
"tests/property/candid_rpc/class_syntax/canister_methods/pre_upgrade",
"tests/property/candid_rpc/class_syntax/canister_methods/query",
"tests/property/candid_rpc/class_syntax/canister_methods/update",
"tests/property/candid_rpc/class_syntax/float32",
"tests/property/candid_rpc/class_syntax/float64",
"tests/property/candid_rpc/class_syntax/func",
"tests/property/candid_rpc/class_syntax/int",
"tests/property/candid_rpc/class_syntax/int16",
"tests/property/candid_rpc/class_syntax/int32",
"tests/property/candid_rpc/class_syntax/int64",
"tests/property/candid_rpc/class_syntax/int8",
"tests/property/candid_rpc/class_syntax/nat",
"tests/property/candid_rpc/class_syntax/nat16",
"tests/property/candid_rpc/class_syntax/nat32",
"tests/property/candid_rpc/class_syntax/nat64",
"tests/property/candid_rpc/class_syntax/nat8",
"tests/property/candid_rpc/class_syntax/null",
"tests/property/candid_rpc/class_syntax/opt",
"tests/property/candid_rpc/class_syntax/principal",
"tests/property/candid_rpc/class_syntax/record",
"tests/property/candid_rpc/class_syntax/recursive",
"tests/property/candid_rpc/class_syntax/text",
"tests/property/candid_rpc/class_syntax/tuple",
"tests/property/candid_rpc/class_syntax/variant",
"tests/property/candid_rpc/class_syntax/vec",
"tests/property/candid_rpc/functional_syntax/blob",
"tests/property/candid_rpc/functional_syntax/bool",
"tests/property/candid_rpc/functional_syntax/canister_methods/http_request",
"tests/property/candid_rpc/functional_syntax/canister_methods/http_request_update",
"tests/property/candid_rpc/functional_syntax/canister_methods/init",
"tests/property/candid_rpc/functional_syntax/canister_methods/inspect_message",
"tests/property/candid_rpc/functional_syntax/canister_methods/post_upgrade",
"tests/property/candid_rpc/functional_syntax/canister_methods/pre_upgrade",
"tests/property/candid_rpc/functional_syntax/canister_methods/query",
"tests/property/candid_rpc/functional_syntax/canister_methods/update",
"tests/property/candid_rpc/functional_syntax/float32",
"tests/property/candid_rpc/functional_syntax/float64",
"tests/property/candid_rpc/functional_syntax/func",
"tests/property/candid_rpc/functional_syntax/int",
"tests/property/candid_rpc/functional_syntax/int16",
"tests/property/candid_rpc/functional_syntax/int32",
"tests/property/candid_rpc/functional_syntax/int64",
"tests/property/candid_rpc/functional_syntax/int8",
"tests/property/candid_rpc/functional_syntax/nat",
"tests/property/candid_rpc/functional_syntax/nat16",
"tests/property/candid_rpc/functional_syntax/nat32",
"tests/property/candid_rpc/functional_syntax/nat64",
"tests/property/candid_rpc/functional_syntax/nat8",
"tests/property/candid_rpc/functional_syntax/null",
"tests/property/candid_rpc/functional_syntax/opt",
"tests/property/candid_rpc/functional_syntax/principal",
"tests/property/candid_rpc/functional_syntax/record",
"tests/property/candid_rpc/functional_syntax/recursive",
"tests/property/candid_rpc/functional_syntax/text",
"tests/property/candid_rpc/functional_syntax/tuple",
"tests/property/candid_rpc/functional_syntax/variant",
"tests/property/candid_rpc/functional_syntax/vec",
"tests/end_to_end/candid_rpc/class_syntax/async_await",
"tests/end_to_end/candid_rpc/class_syntax/audio_recorder",
"tests/end_to_end/candid_rpc/class_syntax/bitcoin",
Expand Down

0 comments on commit 1680660

Please sign in to comment.