summaryrefslogtreecommitdiff
path: root/zephyr/zmake/tests
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2021-02-08 12:35:42 -0700
committerCommit Bot <commit-bot@chromium.org>2021-02-08 20:39:46 +0000
commitd8b6fbf8acddc7fba611e8cf11732e42d8bcc257 (patch)
tree6bd610c85a06518ef2fd50a1b980392020de2ef7 /zephyr/zmake/tests
parent097dc066c1d76a1383d2b9dd5a2f5d0e78a51ddf (diff)
downloadchrome-ec-d8b6fbf8acddc7fba611e8cf11732e42d8bcc257.tar.gz
zephyr: zmake: disable deadlines for test_find_dts_overlays
The timing in the CQ seems rather inconsistent for this test. Hypothesis complains about this: > Unreliable test timings! On an initial run, this test took > 1456.42ms, which exceeded the deadline of 1000.00ms, but on a > subsequent run it took 183.34 ms, which did not. If you expect this > sort of variability in your test timings, consider turning deadlines > off for this test by setting deadline=None. So, I'm setting deadline=None to see if it helps. BUG=chromium:1175647 BRANCH=none TEST=CQ de-flakes? Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Change-Id: I09bffa6d00ea6b5457c28d8eb9003e7bf077e9b3 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2682838 Reviewed-by: Yuval Peress <peress@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'zephyr/zmake/tests')
-rw-r--r--zephyr/zmake/tests/test_project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/zmake/tests/test_project.py b/zephyr/zmake/tests/test_project.py
index a47407e95e..03c9d3a917 100644
--- a/zephyr/zmake/tests/test_project.py
+++ b/zephyr/zmake/tests/test_project.py
@@ -32,7 +32,7 @@ class TemporaryProject(tempfile.TemporaryDirectory):
@hypothesis.given(sets_of_board_names)
-@hypothesis.settings(deadline=1000)
+@hypothesis.settings(deadline=None)
def test_find_dts_overlays(modules):
"""Test the functionality of find_dts_overlays with multiple
modules, each with sets of board names."""