s6.app.testΒΆ
Run the Sense Core unit test suite from the CLI.
This module powers the s6 test command by resolving the repository
src path, loading requested tests by dotted name, or discovering all tests
matching test_*.py under src/s6.
- s6.app.test.main()
Execute unit tests and exit with a process status code.
When one or more dotted test names are provided in
sys.argv[1:], only those tests are loaded. Otherwise, all tests undersrc/s6matchingtest_*.pyare discovered and executed.- Raises:
SystemExit β Exits with code
0when all tests pass, otherwise1.