Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ jobs:
run: ${{ inputs.additional-setup }}

- name: Run Tests (Native Only)
run: cargo test --workspace --exclude notedeck_columns --exclude notedeck_dave --exclude notedeck_messages
run: cargo test --workspace --exclude notedeck_columns --exclude notedeck_dave --exclude notedeck_messages --exclude notedeck_notebook
env:
CI: true

- name: Run notedeck_notebook Tests
run: cargo test -p notedeck_notebook -- --test-threads=1
env:
CI: true

Expand Down
Loading