mirror of
https://github.com/nushell/nushell
synced 2024-12-26 04:53:09 +00:00
- Fixes #10906 No rust changes, just tookit.nu. When `check pr` is run, it should now run with the `--workspace` argument so all tests are run.
This commit is contained in:
parent
ffb80b8873
commit
5ad7b8f029
1 changed files with 10 additions and 2 deletions
|
@ -267,10 +267,18 @@ export def "check pr" [
|
|||
print $"running ('toolkit test' | pretty-format-command)"
|
||||
try {
|
||||
if $fast {
|
||||
if ($features | is-empty) {
|
||||
test --workspace --fast
|
||||
} else {
|
||||
test --features $features --fast
|
||||
}
|
||||
} else {
|
||||
if ($features | is-empty) {
|
||||
test --workspace
|
||||
} else {
|
||||
test --features $features
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
return (report --fail-test)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue