diff options
| author | Scott Gasch <[email protected]> | 2022-02-03 15:47:25 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-03 15:47:25 -0800 |
| commit | aca44b9aff1ea315c18b80a1c543f4e9b79fc9b0 (patch) | |
| tree | 2cdd677fbadba97303d33c8ca5927bc24ad260ce | |
| parent | 01f7083eeef0330820e0e5d03fb83a3a8bfd2777 (diff) | |
Make this thing actually work.
| -rwxr-xr-x | tests/run_some_dependencies_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run_some_dependencies_test.py b/tests/run_some_dependencies_test.py index 5a567af..1a7fab7 100755 --- a/tests/run_some_dependencies_test.py +++ b/tests/run_some_dependencies_test.py @@ -18,9 +18,9 @@ logger = logging.getLogger(__name__) class RunSomeDependenciesTest(unittest.TestCase): - def make_sure_random_utilities_still_seem_to_work(self): + def test_make_sure_random_utilities_still_seem_to_work(self): commands = [ - "/home/scott/cron/manage_lights.py -n --run_profiler", + "/home/scott/cron/manage_lights.py -n --run_profiler >& /dev/null", "/home/scott/bin/reminder.py --logging_level=DEBUG >& /dev/null", "/home/scott/bin/wordle.py --mode=AUTOPLAY --template=trial >& /dev/null", "/home/scott/bin/tplink.py -a office_lights -c info --audit_import_events >& /dev/null", |
