Skip to content

Commit

Permalink
chore: Integration (black box) tests were not being run in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Nov 4, 2023
1 parent 1d8aeda commit b04dc47
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,16 @@ jobs:
- name: Install shared mime info DB
if: runner.os == 'macOS'
run: brew install shared-mime-info
- name: Tests
- name: Unit Tests
run: cargo test --lib
env:
RUST_LOG: debug
RUST_BACKTRACE: 1
- name: Black box Tests
run: cargo test --test '*' -- --skip verify_plugin
env:
RUST_LOG: debug
RUST_BACKTRACE: 1
- name: Build Plugin
run: cargo build
- name: Clippy
Expand Down

0 comments on commit b04dc47

Please sign in to comment.