Skip to content

Commit

Permalink
Only run conda test on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Sep 27, 2022
1 parent 0e032b8 commit f45fabf
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tests/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit f45fabf

Please sign in to comment.