bevy/examples/stress_tests
Tristan Guichaoua 694c06f3d0
Inverse missing_docs logic (#11676)
# Objective

Currently the `missing_docs` lint is allowed-by-default and enabled at
crate level when their documentations is complete (see #3492).
This PR proposes to inverse this logic by making `missing_docs`
warn-by-default and mark crates with imcomplete docs allowed.

## Solution

Makes `missing_docs` warn at workspace level and allowed at crate level
when the docs is imcomplete.
2024-02-03 21:40:55 +00:00
..
bevymark.rs Use the Continuous update mode in stress tests when unfocused (#11652) 2024-02-01 19:22:47 +00:00
many_animated_sprites.rs Use the Continuous update mode in stress tests when unfocused (#11652) 2024-02-01 19:22:47 +00:00
many_buttons.rs Inverse missing_docs logic (#11676) 2024-02-03 21:40:55 +00:00
many_cubes.rs Use the Continuous update mode in stress tests when unfocused (#11652) 2024-02-01 19:22:47 +00:00
many_foxes.rs Use the Continuous update mode in stress tests when unfocused (#11652) 2024-02-01 19:22:47 +00:00
many_gizmos.rs Inverse missing_docs logic (#11676) 2024-02-03 21:40:55 +00:00
many_glyphs.rs Use the Continuous update mode in stress tests when unfocused (#11652) 2024-02-01 19:22:47 +00:00
many_lights.rs Use the Continuous update mode in stress tests when unfocused (#11652) 2024-02-01 19:22:47 +00:00
many_sprites.rs Use the Continuous update mode in stress tests when unfocused (#11652) 2024-02-01 19:22:47 +00:00
README.md Add a stress test profile (#6901) 2022-12-20 15:59:41 +00:00
text_pipeline.rs Use the Continuous update mode in stress tests when unfocused (#11652) 2024-02-01 19:22:47 +00:00
transform_hierarchy.rs Remove some old references to CoreSet (#9833) 2023-09-18 01:07:11 +00:00
warning_string.txt Added performance warning when running stress test examples in debug mode (#5029) 2022-07-13 19:13:46 +00:00

Stress tests

These examples are used to stress test Bevy's performance in various ways. These should be run with the "stress-test" profile to accurately represent performance in production, otherwise they will run in cargo's default "dev" profile which is very slow.

Example Command

cargo run --profile stress-test --example <EXAMPLE>