Lines Matching refs:tests
5 tested and what tests you should write when adding a new feature.
8 Running tests
11 To run most tests on sandbox, type this:
23 target provides this feature and it is widely used in tests.
29 Many tests are available using the pytest suite, in test/py. This can run
32 but provides the ability to unify lots of tests and summarise their results.
34 You can run the tests on sandbox with:
46 Tbot provides a way to execute tests on target hardware. It is intended for
52 Ad-hoc tests
55 There are several ad-hoc tests which run outside the pytest environment:
58 test/image - FIT and legacy image tests (shell script and Python)
65 When to write tests
77 On the other hand there is quite a bit of code that is not covered with tests,
83 - If the code you are modifying has not tests, consider writing one. Even a
92 Converting existing shell scripts into pytest tests.