diff --git a/tests/run.rs b/tests/run.rs index dfc07e307..abede3c3c 100644 --- a/tests/run.rs +++ b/tests/run.rs @@ -164,10 +164,13 @@ fn integration_pyo3_mixed_py_subdir() { #[test] fn integration_pyo3_pure_conda() { - handle_result(integration::test_integration_conda( - "text-crates/pyo3-pure", - None, - )); + // Only run on GitHub Actions for now + if std::env::var("GITHUB_ACTIONS").is_ok() { + handle_result(integration::test_integration_conda( + "test-crates/pyo3-mixed", + None, + )); + } } #[test]