Skip to content

Commit

Permalink
Skip develop_cffi_pure
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Oct 19, 2024
1 parent 29d3c55 commit 314cc70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
matrix:
os:
- ubuntu-latest
#- macos-13
#- macos-14
#- windows-latest
- macos-13
- macos-14
- windows-latest
python-version:
- '3.9'
- '3.13'
Expand Down Expand Up @@ -304,6 +304,7 @@ jobs:
container: quay.io/pypa/${{ matrix.manylinux }}_x86_64
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: actions/download-artifact@v4
with:
name: maturin-build
Expand Down Expand Up @@ -381,7 +382,7 @@ jobs:
with:
name: maturin-build
path: bin
- run: chmod +x bin/maturin-build
- run: chmod +x bin/maturin
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform.target }}
Expand Down
4 changes: 2 additions & 2 deletions tests/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ fn develop_pyo3_mixed_src_layout() {
#[test]
fn develop_cffi_pure() {
let python_implementation = test_python_implementation().unwrap();
if cfg!(windows) && env::var("GITHUB_ACTIONS").is_ok() && python_implementation == "pypy" {
// PyPy on Windows hangs on cffi test sometimes
if env::var("GITHUB_ACTIONS").is_ok() && python_implementation == "pypy" {
// TODO: PyPy hangs on cffi test sometimes
return;
}
handle_result(develop::test_develop(
Expand Down

0 comments on commit 314cc70

Please sign in to comment.