Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix snippet CI #6715

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 24 additions & 21 deletions docs/snippets/snippets.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,21 @@
# You should only ever use this if the test isn't implemented and cannot yet be implemented
# for one or more specific SDKs.
[opt_out.run]
concepts = [
"cpp", # Blueprint API doesn't exist for C++/Rust
"rust", # Blueprint API doesn't exist for C++/Rust
]
views = [
"cpp", # TODO(#5520): C++ views are not yet implemented
"rust", # TODO(#5521): Rust views are not yet implemented
]

"archetypes/image_advanced" = ["cpp", "rust"] # Missing examples
"concetps/viscomp-base" = ["cpp", "rust"] # Blueprint API doesn't exist for C++/Rust
"concetps/viscomp-component-default" = ["cpp", "rust"] # Blueprint API doesn't exist for C++/Rust
"concetps/viscomp-component-override" = ["cpp", "rust"] # Blueprint API doesn't exist for C++/Rust
"concetps/viscomp-visualizer-override" = ["cpp", "rust"] # Blueprint API doesn't exist for C++/Rustt
"migration/log_line" = [ # Not a complete example -- just a single log line
"cpp",
"rust",
"py",
]
"tutorials/annotation-context" = [ # Not a complete example
"cpp",
"rust",
Expand Down Expand Up @@ -45,18 +55,6 @@
"rust", # Not implemented
"py", # Doesn't terminate
]

"migration/log_line" = [ # Not a complete example -- just a single log line
"cpp",
"rust",
"py",
]

views = [
"cpp", # TODO(#5520): C++ views are not yet implemented
"rust", # TODO(#5521): Rust views are not yet implemented
]

"tutorials/visualizer-overrides" = [
"cpp", # Not implemented
"rust", # Not implemented
Expand All @@ -68,6 +66,16 @@ views = [
# You should only ever use this if the test cannot yet be implemented in a way that yields the right
# data, but you still want to check whether the test runs properly and outputs _something_.
[opt_out.compare]
concepts = [ # Only python
"cpp",
"py",
"rust",
]
quick_start = [ # These examples don't have exactly the same implementation.
"cpp",
"py",
"rust",
]
"archetypes/arrow3d_simple" = [ # TODO(#3206): examples use different RNGs
"cpp",
"py",
Expand Down Expand Up @@ -119,11 +127,6 @@ views = [
"py",
"rust",
]
quick_start = [ # These examples don't have exactly the same implementation.
"cpp",
"py",
"rust",
]
"archetypes/text_log_integration" = [ # The entity path will differ because the Rust code is part of a library
"cpp",
"py",
Expand Down
Loading