From 0b31a73c83e39b499d002119d9a5869306e9bb68 Mon Sep 17 00:00:00 2001 From: Kamil Jarosz Date: Wed, 10 Apr 2024 22:34:53 +0200 Subject: [PATCH] tests: Add `is_slow` parameter to README --- tests/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/README.md b/tests/README.md index fe263c3a38b39..24458dccb80f0 100644 --- a/tests/README.md +++ b/tests/README.md @@ -24,6 +24,7 @@ ignore = false # If true, ignore this test. Please comment why, ideally link to known_failure = false # If true, this test is known to fail and the result will be inverted. When the test passes in the future, it'll fail and alert that it now passes. output_path = "output.txt" # Path (relative to the directory containing test.toml) to the expected output log_fetch = false # If true, all network requests will be included in the output. +is_slow = false # If true, the test is marked as taking significantly longer to execute compared to others. Used for improving performance of the test suite. # Sometimes floating point math doesn't exactly 100% match between flash and rust. # If you encounter this in a test, the following section will change the output testing from "exact" to "approximate" @@ -71,4 +72,4 @@ sleep_to_meet_frame_rate = false # If true, slow the tick rate to match the movi `fscommand("quit")` is enabled for tests, and will end the test at the end of this frame or tick. -You can use this to end a test prematurely before the set number of iterations elapses, which may be useful for timer tests. \ No newline at end of file +You can use this to end a test prematurely before the set number of iterations elapses, which may be useful for timer tests.