Skip to content
Draft
Show file tree
Hide file tree
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
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,14 @@ jobs:

# TODO: Restore a cache of dependencies and 'target'.

# Build and run the test suite.
- name: Test
run: cargo test --all-targets --locked
# Run unit tests.
- name: Unit tests
run: cargo test --locked --bins

# Run integration tests.
- name: Integration tests
env:
RUST_LOG: debug
run: cargo test --locked --test integration

# TODO: Build a cache.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
.vscode/
.DS_Store
Session.vim

test-dump-*
/test
Loading
Loading