Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
86e87e8
drop: remove unused structured-execution model and duplicate error/id…
raphael-goetz Aug 1, 2026
dcdf9c2
ref: rename manual/tests crates to taurus-manual/taurus-tests
raphael-goetz Aug 1, 2026
7888544
ref: collapse ExecutionEngine wrapper API to methods actually used
raphael-goetz Aug 1, 2026
fee51a6
ref: share fixture loading and value normalization via taurus-core
raphael-goetz Aug 1, 2026
8fcbaba
fix: drain NATS emitter on shutdown instead of aborting the worker task
raphael-goetz Aug 1, 2026
7c61352
perf: stop collecting execution trace in production worker
raphael-goetz Aug 1, 2026
939a3c2
docs: add module-level documentation across taurus and taurus-provider
raphael-goetz Aug 1, 2026
b223774
perf: reduce ValueStore cloning on reference resolution and result st…
raphael-goetz Aug 1, 2026
1002f20
chore: add engine execution benchmarks and profiling workload
raphael-goetz Aug 1, 2026
2e03952
perf: make runtime trace labels lazy
raphael-goetz Aug 1, 2026
f3e32a2
feat: execute flows concurrently instead of one at a time
raphael-goetz Aug 1, 2026
fb64319
perf: run the http action off the async worker pool via block_in_place
raphael-goetz Aug 1, 2026
0921dcb
fix: bound the NATS emitter's outbound event channel
raphael-goetz Aug 1, 2026
1efdcf0
feat: make Tokio's blocking-thread pool size configurable
raphael-goetz Aug 1, 2026
1b7b9d3
ref: extract benchmarks/profiling into a new taurus-bench crate
raphael-goetz Aug 1, 2026
a041179
ref: unify the http handler instead of overriding it
raphael-goetz Aug 1, 2026
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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
env:
RUST_BACKTRACE: 'full'
- name: Run workspace tests
run: cargo test --workspace --all-targets
run: cargo test --workspace --all-targets --exclude taurus-bench
- name: Run NATS test execution request tests
run: cargo test -p taurus test_execution_request -- --ignored --nocapture
env:
NATS_URL: nats://127.0.0.1:4222
- name: Run tests package flow suite
run: cargo run --package tests
run: cargo run --package taurus-tests
Loading