Limit run-external --redirect-combine sh test to not(Windows) (#10905)

# Description

Limit the test `-p nu-command --test main
commands::run_external::redirect_combine` which uses `sh` to running on
`not(Windows)` like is done for other tests assuming unixy CLI items;
`sh` doesn't exist on Windows.

# User-Facing Changes

None; this is a change to tests only.

# Tests + Formatting

- 🟢 `toolkit fmt`
- 🟢 `toolkit clippy`
- 🟢 `toolkit test`
- 🟢 `toolkit test stdlib`
This commit is contained in:
Christopher Durham 2023-11-07 03:35:24 -05:00 committed by GitHub
parent 1874082a2c
commit 9b202d560d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -321,6 +321,7 @@ fn quotes_trimmed_when_shelling_out() {
assert_eq!(actual.out, "foo"); assert_eq!(actual.out, "foo");
} }
#[cfg(not(windows))]
#[test] #[test]
fn redirect_combine() { fn redirect_combine() {
Playground::setup("redirect_combine", |dirs, _| { Playground::setup("redirect_combine", |dirs, _| {