Skip to content

Commit

Permalink
Remove ci-test-full recipe and simplify comments
Browse files Browse the repository at this point in the history
This removes the `ci-test-full` justfile target (see GitoxideLabs#1674), and
simplifies and shortens some comments in the justfile, since the
distinction between `ci-test` and `ci-test-full` no longer has to
be explained, and since some other parts of the comments are no
longer applicable (GitoxideLabs#1673).
  • Loading branch information
EliahKagan committed Nov 14, 2024
1 parent 2fc93f7 commit eeccb4b
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,10 @@ alias nt := nextest
# run all tests, clippy, including journey tests, try building docs
test: clippy check doc unit-tests journey-tests-pure journey-tests-small journey-tests-async journey-tests

# run all tests, without clippy, including journey tests, try building docs (and clear target)
ci-test-full: check doc unit-tests clear-target ci-journey-tests

# run all tests, without clippy, and try building docs (without clearing the target)
# run all tests, without clippy, and try building docs
ci-test: check doc unit-tests

# run all journey tests
# these should be run in a fresh clone or after `cargo clean`
# (and workaround a just-issue of deduplicating targets)
# run all journey tests - should be run in a fresh clone or after `cargo clean`
ci-journey-tests: journey-tests-pure journey-tests-small journey-tests-async journey-tests

clear-target:
Expand Down

0 comments on commit eeccb4b

Please sign in to comment.