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

Possible mitigation for Python smoke flakes #2461

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 9 additions & 2 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,13 +485,20 @@ Caused by:

#[test]
#[cfg(feature = "extern-dependencies-tests")]
#[ignore = "https://github.com/fermyon/spin/issues/2457"]
// TODO: Check why python is not picking up the spin_sdk from site_packages
// Currently installing to the local directory to get around it.
fn http_python_template_smoke_test() -> anyhow::Result<()> {
let prebuild = |env: &mut testing_framework::TestEnvironment<_>| {
let mut tidy = std::process::Command::new("pip3");
tidy.args(["install", "-r", "requirements.txt", "-t", "."]);
tidy.args([
"install",
"-r",
"requirements.txt",
"-t",
".",
"--timeout",
"60",
]);
env.run_in(&mut tidy)?;
Ok(())
};
Expand Down
Loading