Skip to content

Commit

Permalink
fix: remove nightly from testing. (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaoleal authored Dec 3, 2024
1 parent 5e750fd commit 4784848
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ clean:
test name="":
@just test-doc {{name}}
@just test-unit {{name}}
@just test-int {{name}}
@just test-int

# Execute doc tests
test-doc name="":
cargo +nightly test {{name}} --doc
cargo test {{name}} --doc

# Execute unit tests
test-unit name="":
cargo test --lib {{name}} -- --nocapture

# Execute integration tests
test-int name="":
cargo test --test '*' {{name}} -- --nocapture
test-int:
cargo test --workspace -- --nocapture

# Generate documentation for all crates
doc:
Expand Down

0 comments on commit 4784848

Please sign in to comment.