Unverified Commit 9bd0b443 authored by Jared Baur's avatar Jared Baur Committed by GitHub
Browse files

roc: skip snapshot tests (#474316)

parents 72ea2b8d 0438a7f7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -85,12 +85,12 @@ rustPlatform.buildRustPackage {
  checkPhase =
    lib.optionalString stdenv.isLinux ''
      runHook preCheck
      NIX_GLIBC_PATH=${glibc.out}/lib NIX_LIBGCC_S_PATH=${stdenv.cc.cc.lib}/lib cargo test --release --workspace --exclude test_mono --exclude uitest -- --skip glue_cli_tests
      NIX_GLIBC_PATH=${glibc.out}/lib NIX_LIBGCC_S_PATH=${stdenv.cc.cc.lib}/lib cargo test --release --workspace --exclude test_mono --exclude uitest -- --skip glue_cli_tests --skip test_snapshots
      runHook postCheck
    ''
    + lib.optionalString (!stdenv.isLinux) ''
      runHook preCheck
      cargo test --release --workspace --exclude test_mono --exclude uitest -- --skip glue_cli_tests
      cargo test --release --workspace --exclude test_mono --exclude uitest -- --skip glue_cli_tests --skip test_snapshots
      runHook postCheck
    '';