Lines Matching +full:runs +full:- +full:on
12 scripts/install-prerequisites.sh
17 2. Build all build-only tests with `./tests/main.py build`.
18 3. Clean prior test build, build all build-only tests,
20 report `./tests/main.py --clean --report build test`.
21 4. You can re-generate the test images by adding option `--update-image`.
22 It relies on scripts/LVGLImage.py, which requires pngquant and pypng.
24 `./tests/main.py --update-image test`
26 As of now the generated image on CI uses pngquant 2.13.1-1.
28 For full information on running tests run: `./tests/main.py --help`.
32 GitHub's CI automatically runs these tests on pushes and pull requests to `master` and `releasev8.*…
35 - `src` Source files of the tests
36 - `test_cases` The written tests,
37 - `test_runners` Generated automatically from the files in `test_cases`.
38 - other miscellaneous files and folders
39 - `ref_imgs` - Reference images for screenshot compare
40 - `report` - Coverage report. Generated if the `report` flag was passed to `./main.py`
41 - `unity` Source files of the test engine
52 - `TEST_ASSERT_EQUAL_SCREENSHOT("image1.png")` Render the active screen and compare its content wit…
53 - If the reference image is not found it will be created automatically from the rendered screen.
54 …- If the compare fails an `<image_name>_err.png` file will be created with the rendered content ne…
55 - `TEST_ASSERT_EQUAL_COLOR(color1, color2)` Compare two colors.