Skip to content
Merged
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
181 changes: 181 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ python = ["pyo3"]
name = "rable"
crate-type = ["lib", "cdylib"]

[dev-dependencies]
tree-sitter = "0.26"
tree-sitter-bash = "0.25"

[lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
Expand Down
4 changes: 4 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ fuzz-minimize input: develop _install-parable
fuzz-generate-tests: develop
.venv/bin/python3 tests/generate_oracle_tests.py

# Compare rable vs tree-sitter-bash accuracy (VERBOSE=1 for details)
compare-tree-sitter:
cargo test compare_parsers -- --nocapture

# Run the oracle test suite (aspirational — does not fail build)
test-oracle:
cargo test oracle_test_suite -- --nocapture
Expand Down
Loading
Loading