From 56b9264fcf26cc7cbd0a6d95ff2c32ba71f4626e Mon Sep 17 00:00:00 2001 From: Dhruv Chauhan Date: Wed, 3 May 2023 13:05:00 +0100 Subject: MLIA-755 Remove TOSA Extra Dependency - Removed TOSA Checker dependency from setup.cfg - Installation process calls directly the installation of TOSA Checker instead of the extra dependency Change-Id: I21e309b9316671959483bd2ef1ecaf644936a4cb --- tests/test_backend_tosa_checker_install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test_backend_tosa_checker_install.py b/tests/test_backend_tosa_checker_install.py index 0393f0b..e0f5160 100644 --- a/tests/test_backend_tosa_checker_install.py +++ b/tests/test_backend_tosa_checker_install.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates. +# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates. # SPDX-License-Identifier: Apache-2.0 """Tests for python package based installations.""" from pathlib import Path @@ -44,7 +44,7 @@ def test_get_tosa_backend_installation( mock_package_manager.install.assert_not_called() tosa_installation.install(DownloadAndInstall()) - mock_package_manager.install.assert_called_once_with(["mlia[tosa]"]) + mock_package_manager.install.assert_called_once_with(["tosa-checker"]) tosa_installation.uninstall() mock_package_manager.uninstall.assert_called_once_with(["tosa-checker"]) -- cgit v1.2.1