aboutsummaryrefslogtreecommitdiff
path: root/tests/test_cli_options.py
diff options
context:
space:
mode:
authorBenjamin Klimczak <benjamin.klimczak@arm.com>2022-11-07 12:04:06 +0000
committerBenjamin Klimczak <benjamin.klimczak@arm.com>2022-11-09 11:23:32 +0000
commitf77ffbd3033d122a375c3be63624ea80507d0541 (patch)
tree0465aafdba081f15a769c5929ed5d3b5610bbed1 /tests/test_cli_options.py
parent006c95f3053c89af41726c582c7b4d0f9914553b (diff)
downloadmlia-f77ffbd3033d122a375c3be63624ea80507d0541.tar.gz
MLIA-275 Remove support for CSV output
Change-Id: I212c9cad5f2ac28b75b1d9e2fb8f1f8b444b8397
Diffstat (limited to 'tests/test_cli_options.py')
-rw-r--r--tests/test_cli_options.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_cli_options.py b/tests/test_cli_options.py
index f898146..d75f7c0 100644
--- a/tests/test_cli_options.py
+++ b/tests/test_cli_options.py
@@ -147,9 +147,6 @@ def test_get_target_opts(args: dict | None, expected_opts: list[str]) -> None:
[["--output", "report.json"], "report.json"],
[["--output", "REPORT.JSON"], "REPORT.JSON"],
[["--output", "some_folder/report.json"], "some_folder/report.json"],
- [["--output", "report.csv"], "report.csv"],
- [["--output", "REPORT.CSV"], "REPORT.CSV"],
- [["--output", "some_folder/report.csv"], "some_folder/report.csv"],
],
)
def test_output_options(output_parameters: list[str], expected_path: str) -> None: