nix fmt
This commit is contained in:
parent
27343e49bd
commit
04150f10d4
32 changed files with 475 additions and 404 deletions
|
|
@ -1,15 +1,15 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchurl
|
||||
, rustPlatform
|
||||
, dbus
|
||||
, xorg
|
||||
, pkg-config
|
||||
, writableTmpDirAsHomeHook
|
||||
, nix-update-script
|
||||
, llvmPackages
|
||||
,
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
fetchurl,
|
||||
rustPlatform,
|
||||
dbus,
|
||||
xorg,
|
||||
pkg-config,
|
||||
writableTmpDirAsHomeHook,
|
||||
nix-update-script,
|
||||
llvmPackages,
|
||||
}:
|
||||
let
|
||||
version = "1.0.20";
|
||||
|
|
@ -55,20 +55,19 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
checkFlags =
|
||||
[
|
||||
# need dbus-daemon
|
||||
"--skip=config::base::tests::test_multiple_secrets"
|
||||
"--skip=config::base::tests::test_secret_management"
|
||||
"--skip=logging::tests::test_log_file_name::with_session_name_and_error_capture"
|
||||
# Observer should be Some with both init project keys set
|
||||
"--skip=tracing::langfuse_layer::tests::test_create_langfuse_observer"
|
||||
"--skip=providers::gcpauth::tests::test_token_refresh_race_condition"
|
||||
# Lazy instance has previously been poisoned
|
||||
"--skip=jetbrains::tests::test_capabilities"
|
||||
"--skip=jetbrains::tests::test_router_creation"
|
||||
"--skip=developer::tests::test_text_editor_write_and_view_file"
|
||||
];
|
||||
checkFlags = [
|
||||
# need dbus-daemon
|
||||
"--skip=config::base::tests::test_multiple_secrets"
|
||||
"--skip=config::base::tests::test_secret_management"
|
||||
"--skip=logging::tests::test_log_file_name::with_session_name_and_error_capture"
|
||||
# Observer should be Some with both init project keys set
|
||||
"--skip=tracing::langfuse_layer::tests::test_create_langfuse_observer"
|
||||
"--skip=providers::gcpauth::tests::test_token_refresh_race_condition"
|
||||
# Lazy instance has previously been poisoned
|
||||
"--skip=jetbrains::tests::test_capabilities"
|
||||
"--skip=jetbrains::tests::test_router_creation"
|
||||
"--skip=developer::tests::test_text_editor_write_and_view_file"
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue