Skip to content

Commit

Permalink
Fix just test-all target to omit Prophet benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
sd2k committed Oct 25, 2024
1 parent c260027 commit 02c7b76
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@ test:

# Run all unit and integration tests, plus examples and benchmarks,
# except for those which require `iai` (which isn't available on
# all platforms).
# all platforms) and the Prophet benchmarks which require a STAN
# installation.
test-all:
cargo nextest run \
--all-features \
--all-targets \
--workspace \
--exclude augurs-js \
--exclude pyaugurs \
-E 'not binary(/iai/)'
-E 'not (binary(/iai/) | binary(/real-life/))'

doctest:
# Ignore augurs-js and pyaugurs since they either won't compile with all features enabled
Expand Down

0 comments on commit 02c7b76

Please sign in to comment.