Skip to content

Commit

Permalink
Removal install package with extra from tests (openvinotoolkit#2717)
Browse files Browse the repository at this point in the history
### Changes

Removal install package with extra from tests

### Reason

```
WARNING: nncf 2.11.0.dev0+unknown.version does not provide the extra 'torch'
```
  • Loading branch information
AlexanderDokuchaev authored Jun 4, 2024
1 parent cd64227 commit 99b5b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cross_fw/install/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def find_file_by_extension(directory: Path, extension: str) -> str:
elif package_type == "build_w":
package_path = find_file_by_extension(PROJECT_ROOT / "dist", ".whl")

run_cmd_line = f"{pip_with_venv} install {package_path}[{backend}]"
run_cmd_line = f"{pip_with_venv} install {package_path}"
subprocess.run(run_cmd_line, check=True, shell=True)

run_path = tmp_path / "run"
Expand Down

0 comments on commit 99b5b85

Please sign in to comment.