diff --git a/poetry/test_linux.sh b/poetry/test_linux.sh index 577907dbc..1cd274e13 100755 --- a/poetry/test_linux.sh +++ b/poetry/test_linux.sh @@ -39,9 +39,7 @@ Package operations: 6 installs, 0 updates, 0 removals • Installing mysqlclient (2.1.1) • Installing requests (2.28.2) -Writing lock file - -Installing the current project: StandaloneTools (1.0.0)' +Writing lock file' test_version() { assertEquals "Poetry (version 1.7.1)" "$(../bin/poetry.sh --version)" @@ -72,7 +70,7 @@ test_install_from_symlink() { ln -sf "$(readlink -f ../bin/poetry.sh)" /usr/local/bin/poetry - assertEquals "$poetry_install_stdout" "$(poetry install)" + assertEquals "$poetry_install_stdout" "$(poetry install --no-root)" } test_install_from_sh() { diff --git a/poetry/test_windows.sh b/poetry/test_windows.sh index efce5bc9a..a2c631795 100755 --- a/poetry/test_windows.sh +++ b/poetry/test_windows.sh @@ -43,7 +43,7 @@ test_install_from_path() { path_with_poetry="$PATH;$(readlink -f ../bin)" export PATH="$path_with_poetry" - poetry_install_stdout="$(poetry install | dos2unix)" + poetry_install_stdout="$(poetry install --no-root | dos2unix)" assertEquals "$(echo "$poetry_install_stdout_etalon" | head -4)" "$(echo "$poetry_install_stdout" | head -4)" }