You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
If I run cargo test out of the box, "Doc-tests" is run and cargo invokes rustdoc as expected, but if I set --target x86_64-pc-windows-msvc on Windows (after installing the target with rustup), "Doc-tests"
Steps
cargo test --target i686-pc-windows-msvc
"Doc-tests" in the output
cargo test --target x86_64-pc-windows-msvc
"Doc-tests not in the output
Notes
i686-pc-windows-msvc is the default target used on Windows.
Output of cargo version: cargo 1.42.0 (86334295e 2020-01-31)
Output of rustup --version: rustup 1.21.1 (7832b2ebe 2019-12-20)
Output of rustc --version: rustc 1.42.0 (b8cedc004 2020-03-09)
The text was updated successfully, but these errors were encountered:
Problem
If I run
cargo test
out of the box, "Doc-tests" is run and cargo invokes rustdoc as expected, but if I set--target x86_64-pc-windows-msvc
on Windows (after installing the target with rustup), "Doc-tests"Steps
cargo test --target i686-pc-windows-msvc
"Doc-tests" in the output
cargo test --target x86_64-pc-windows-msvc
"Doc-tests not in the output
Notes
i686-pc-windows-msvc is the default target used on Windows.
Output of
cargo version
:cargo 1.42.0 (86334295e 2020-01-31)
Output of
rustup --version
:rustup 1.21.1 (7832b2ebe 2019-12-20)
Output of
rustc --version
:rustc 1.42.0 (b8cedc004 2020-03-09)
The text was updated successfully, but these errors were encountered: