Split test
CI job into test
and test-journey
#1674
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As detailed in 711c2f5, this splits out the journey tests into their own job, making changes to both
justfile
and the CI test workflow to do so. This is the change recently discussed in #1668 (#1668 (comment), #1668 (comment)). I've tried to avoid making code comments in thejustfile
more confusing when doing this, but I may end up opening a subsequent PR to fix them up, depending on the answer to #1673.This also fixes up the remaining
with_program tree
in the journey tests, changing it towith_program find
(f1a171b). All uses oftree
in the journey tests were replaced withfind
in 3c1bfd5 (#861), but this particularwith_program
call was not updated to reflect that. This allows the test to run whentree
is absent, and nothing else is using it, so this also no longer installs it in any CI jobs. The reason for including this change in this PR is that it was necessary to figure out which commands had to be run to prepare each oftest
andtest-journey
.