diff --git a/logtools/cli/es_logs.py b/logtools/cli/es_logs.py index ff5a4dc..5f64623 100644 --- a/logtools/cli/es_logs.py +++ b/logtools/cli/es_logs.py @@ -153,7 +153,7 @@ def _add_get_cli(subparsers): get_namespaces.add_argument('--prefix', help='filter namespaces by prefix') get_namespaces = get_subparsers.add_parser('runs', help='display current test runs') - get_namespaces.add_argument('--run-id', help='show test runs for the given run id', required=True) + get_namespaces.add_argument('run_id', help='show test runs for the given run id') get_namespaces.add_argument('--failed-only', action='store_true', help='show only failed test runs') get_namespaces.add_argument('--from', type=tsparser.parse, help='show test runs starting at the given date ' diff --git a/pyproject.toml b/pyproject.toml index 0e914ea..cd86b14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "logtools" -version = "1.2.0" +version = "1.2.1" description = "" authors = ["gmega "] readme = "README.md"