Skip to content

Commit

Permalink
ignore failing tests in main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Quba1 committed Feb 4, 2024
1 parent aac4fd9 commit 6ffbe32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cargo clippy --features "experimental_index"
- name: Build release
run: |
cargo build --release --features "experimental_index"
cargo test --features "experimental_index" -- --include-ignored
build-macos:

Expand All @@ -51,4 +51,4 @@ jobs:
cargo clippy --features "experimental_index"
- name: Build release
run: |
cargo build --release --features "experimental_index"
cargo test --features "experimental_index" -- --include-ignored
3 changes: 3 additions & 0 deletions tests/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ fn index_panic() -> Result<()> {
}

#[test]
#[ignore = "for releases, indexing is experimental"]
fn add_file_while_index_open() -> Result<()> {
thread::spawn(|| -> Result<()> {
let file_path = Path::new("./data/iceland-surface.idx");
Expand Down Expand Up @@ -169,6 +170,7 @@ fn add_file_to_read_index() -> Result<()> {
}

#[test]
#[ignore = "for releases, indexing is experimental"]
fn simulatenous_index_destructors() -> Result<()> {
let h1 = thread::spawn(|| -> anyhow::Result<(), CodesError> {
let mut rng = rand::thread_rng();
Expand Down Expand Up @@ -219,6 +221,7 @@ fn simulatenous_index_destructors() -> Result<()> {
}

#[test]
#[ignore = "for releases, indexing is experimental"]
fn index_handle_interference() -> Result<()> {
thread::spawn(|| -> Result<()> {
let file_path = Path::new("./data/iceland.grib");
Expand Down

0 comments on commit 6ffbe32

Please sign in to comment.