Run Cloud-eligible integration tests with filtering - #1518
Draft
THardy98 wants to merge 3 commits into
Draft
Conversation
THardy98
force-pushed
the
feat/envconfig-harness
branch
from
August 24, 2026 18:51
086a427 to
b735380
Compare
THardy98
force-pushed
the
feat/cloud-test-filtering
branch
2 times, most recently
from
August 24, 2026 19:04
56f8638 to
1bb491c
Compare
THardy98
force-pushed
the
feat/envconfig-harness
branch
from
August 25, 2026 13:42
b735380 to
e19bfdd
Compare
THardy98
force-pushed
the
feat/cloud-test-filtering
branch
from
August 25, 2026 13:43
1bb491c to
da76966
Compare
THardy98
force-pushed
the
feat/envconfig-harness
branch
from
August 25, 2026 14:43
e19bfdd to
c7823e9
Compare
THardy98
force-pushed
the
feat/cloud-test-filtering
branch
from
August 25, 2026 14:43
da76966 to
4fa0651
Compare
THardy98
force-pushed
the
feat/envconfig-harness
branch
from
August 25, 2026 14:57
c7823e9 to
1c0f8aa
Compare
THardy98
force-pushed
the
feat/cloud-test-filtering
branch
5 times, most recently
from
August 26, 2026 15:13
a1352d2 to
495c5e7
Compare
THardy98
force-pushed
the
feat/cloud-test-filtering
branch
from
September 2, 2026 16:12
495c5e7 to
d5cc2f0
Compare
THardy98
marked this pull request as ready for review
September 2, 2026 16:37
THardy98
marked this pull request as draft
September 2, 2026 16:38
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What was changed
Integration-test modules now declare Cloud exclusions where they are composed with
cloud_test_module_exclusion!; individual tests in mixed modules use#[cloud_test_exclusion(...)]. Both forms take a fixed reason and an optional note. Tests withoutan exclusion are Cloud-eligible by default.
When the integration runner receives
--cloud, it compiles only eligible tests, prints theirinventory, and fails if none remain. Normal integration runs and Clippy continue to compile the
complete suite. The trusted Cloud job runs the selection through the envconfig-backed client and
isolated namespace added in #1483.
Why?
Cloud policy should be visible where test suites are maintained without depending on generated
libtest names. Module-level exclusions keep the classification compact: complete suites need one
declaration, while mixed suites can still exclude a specific test.
Checklist
Part of Run integration tests against cloud features#851.
How was this tested:
cargo +1.94 test -q -p temporalio-macroscargo +1.94 integ-test -s external --cloud -- --listselects the existing timer test.cargo +1.94 lintcargo +1.94 test-lintactionlint -ignore 'SC2086' .github/workflows/per-pr.ymlAny docs updates needed?
Yes. The README documents module- and function-level Cloud exclusions and inventory listing.