Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
cmd/ | 23-Nov-2023 | - | 586 | 398 | ||
README.md | D | 22-Nov-2023 | 653 | 30 | 17 | |
__init__.py | D | 22-Nov-2023 | 636 | 19 | 11 | |
autotest.py | D | 23-Nov-2023 | 5.9 KiB | 199 | 137 | |
autotest_unittest.py | D | 23-Nov-2023 | 2.5 KiB | 84 | 63 | |
conftest.py | D | 22-Nov-2023 | 864 | 27 | 16 | |
eventlib.py | D | 23-Nov-2023 | 4 KiB | 128 | 90 | |
eventlib_unittest.py | D | 22-Nov-2023 | 2.9 KiB | 101 | 63 | |
handlers.py | D | 23-Nov-2023 | 13.9 KiB | 366 | 297 | |
handoffs.py | D | 23-Nov-2023 | 3.2 KiB | 97 | 71 | |
jobx.py | D | 23-Nov-2023 | 6 KiB | 203 | 147 | |
leasing.py | D | 23-Nov-2023 | 4.7 KiB | 169 | 126 | |
leasing_unittest.py | D | 23-Nov-2023 | 7.4 KiB | 268 | 202 | |
loglib.py | D | 22-Nov-2023 | 1.8 KiB | 66 | 46 | |
loglib_unittest.py | D | 22-Nov-2023 | 1.2 KiB | 36 | 24 | |
results.py | D | 23-Nov-2023 | 1.9 KiB | 68 | 45 |
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