Skip to content

Commit

Permalink
chore(test): disable app tests temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Sep 11, 2024
1 parent b46cac7 commit 1cbeeb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ jobs:
- name: Generate code coverage
run: |
cargo build
mv target/debug/binsider target/debug/binsider-coverage
cargo llvm-cov --lcov --output-path lcov.info
cargo llvm-cov --lcov --output-path lcov.info -- --skip "app::tests"
env:
OUT_DIR: target

Expand Down
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ mod tests {
PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("target")
.join("debug")
.join(format!("{}-coverage", env!("CARGO_PKG_NAME")))
.join(env!("CARGO_PKG_NAME"))
}

fn get_test_bytes() -> Result<Vec<u8>> {
Expand Down

0 comments on commit 1cbeeb8

Please sign in to comment.