Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 653 | 30 | 17 | |
__init__.py | D | 03-May-2024 | 636 | 19 | 11 | |
autotest.py | D | 03-May-2024 | 7.3 KiB | 245 | 169 | |
autotest_unittest.py | D | 03-May-2024 | 3 KiB | 98 | 74 | |
conftest.py | D | 03-May-2024 | 864 | 27 | 16 | |
loglib.py | D | 03-May-2024 | 1.8 KiB | 66 | 46 | |
loglib_unittest.py | D | 03-May-2024 | 1.2 KiB | 36 | 24 |
README.md
1# lucifer 2 3[TOC] 4 5This is the Python component of lucifer. See the [design 6doc](http://goto.google.com/monitor_db_per_job_refactor). 7 8See also the Go 9[component](https://chromium.googlesource.com/chromiumos/infra/lucifer) 10 11## Overview 12 13lucifer provides two commands. From the repository root, they are: 14 15- `bin/job_reporter` 16- `bin/job_aborter` 17 18`job_reporter` runs an Autotest job. `job_aborter` is a daemon that 19cleans up jobs that crash and aborts jobs using the AFE database. 20 21## Development 22 23To run all tests, in the repository root, run: 24 25 $ bin/test_lucifer 26 27To skip somewhat slower tests (0.10s or more): 28 29 $ bin/test_lucifer --skipslow 30