Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix install test #2913

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/integration/install_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ func (suite *InstallIntegrationTestSuite) TestInstall_BuildPlannerError() {
defer ts.Close()

ts.PrepareProject("ActiveState-CLI/small-python", "d8f26b91-899c-4d50-8310-2c338786aa0f")
cp := ts.SpawnWithOpts(e2e.OptArgs("install", "[email protected]"), e2e.OptAppendEnv(constants.DisableRuntime+"=true"))
cp := ts.SpawnWithOpts(
e2e.OptArgs("install", "[email protected]"),
e2e.OptAppendEnv(constants.DisableRuntime+"=false"),
)
cp.Expect("Could not plan build, platform responded with", e2e.RuntimeSourcingTimeoutOpt)
cp.ExpectExitCode(1)
ts.IgnoreLogErrors()
Expand Down
Loading