mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
Adapt tests for internationalization (#11628)
I've noticed that two tests fail on my system when running `toolkit check pr`. The reason for this is that my locale is set to German. `ls` is translated, so checking the error message will only work on systems set to English. I've adapted the test to check the exit code instead. Alternatively, we could set the locale, I am not sure if the `nu!` macro supports that though.
This commit is contained in:
parent
e35376f1e7
commit
323207ca1d
1 changed files with 4 additions and 1 deletions
|
@ -251,7 +251,10 @@ export def "check pr" [
|
|||
--fast # use the "nextext" `cargo` subcommand to speed up the tests (see [`cargo-nextest`](https://nexte.st/) and [`nextest-rs/nextest`](https://github.com/nextest-rs/nextest))
|
||||
--features: list<string> # the list of features to check the current PR on
|
||||
] {
|
||||
$env.NU_TEST_LOCALE_OVERRIDE = 'en_US.utf8';
|
||||
$env.NU_TEST_LOCALE_OVERRIDE = 'en_US.utf8'
|
||||
$env.LANG = 'en_US.UTF-8'
|
||||
$env.LANGUAGE = 'en'
|
||||
|
||||
try {
|
||||
fmt --check --verbose
|
||||
} catch {
|
||||
|
|
Loading…
Reference in a new issue