3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #199810 from figsoda/cargo-nextest

cargo-nextest: skip breaking tests
This commit is contained in:
figsoda 2022-11-08 15:27:53 -05:00 committed by GitHub
commit 2717f6da51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,13 @@ rustPlatform.buildRustPackage rec {
cargoBuildFlags = [ "-p" "cargo-nextest" ];
cargoTestFlags = [ "-p" "cargo-nextest" ];
# TODO: investigate some more why these tests fail in nix
checkFlags = [
"--skip=tests_integration::test_list"
"--skip=tests_integration::test_relocated_run"
"--skip=tests_integration::test_run"
];
meta = with lib; {
description = "Next-generation test runner for Rust projects";
homepage = "https://github.com/nextest-rs/nextest";