From dfe52c34b040473e59f52bfe96bca27d724d884f Mon Sep 17 00:00:00 2001 From: Stefan Reck <stefan.reck@fau.de> Date: Fri, 16 Apr 2021 16:10:55 +0200 Subject: [PATCH] minor --- Readme.rst | 5 +++++ tests/test_from_toml.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Readme.rst b/Readme.rst index ddaef43..43c4096 100644 --- a/Readme.rst +++ b/Readme.rst @@ -36,6 +36,11 @@ OrcaSong can be installed via pip by running:: pip install orcasong + +You can get a list of all the bash commands in orcasong by typing:: + + orcasong --help + A Singularity image of the latest stable version of OrcaSong is also provided. You can download it from the km3net sftp server ``pi1139.physik.uni-erlangen.de`` in ``singularity/orcasong.sif``. diff --git a/tests/test_from_toml.py b/tests/test_from_toml.py index 5ee6fb6..f3985c0 100644 --- a/tests/test_from_toml.py +++ b/tests/test_from_toml.py @@ -8,11 +8,11 @@ EXAMPLES = os.path.join( ) -def test_extr(infile): +def _test_extr(infile): return infile + "_extr" -orcasong.from_toml.EXTRACTORS["neutrino_mc"] = test_extr +orcasong.from_toml.EXTRACTORS["neutrino_mc"] = _test_extr class TestSetupProcessorExampleConfig(TestCase): -- GitLab