]> git.baikalelectronics.ru Git - uboot.git/commit
test/py: Relax the naming rules for unit tests
authorSimon Glass <sjg@chromium.org>
Sat, 23 Oct 2021 23:26:11 +0000 (17:26 -0600)
committerSimon Glass <sjg@chromium.org>
Sun, 28 Nov 2021 23:51:51 +0000 (16:51 -0700)
commit4ac70e3c4a4b642b97a8ae5a564a7f9cb086c305
tree95edcbfcdfe7ad2142174573eb1190972037455e
parentd3496857c30cb1f42dd65e9fc6094a3573d3a4d2
test/py: Relax the naming rules for unit tests

At present the collection function used by pytest is quite strict on the
naming of the functions it detects. In particular it requires the name of
the test to be repeated in the function name.

This is not enforced anywhere else, but instead the tests are silently
omitted from the pytest run. This affects a few dozen tests.

The rule does not seem to have any particular purpose. Relax it, so that
all tests that use the UNIT_TEST() macro will run, regardless of the name
of the test function.

Signed-off-by: Simon Glass <sjg@chromium.org>
test/py/conftest.py