mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
biome: skip broken tests
This commit is contained in:
parent
39d921ecb8
commit
dae25408d6
1 changed files with 8 additions and 6 deletions
|
@ -33,12 +33,14 @@ rustPlatform.buildRustPackage rec {
|
||||||
nativeCheckInputs = [ gitMinimal ];
|
nativeCheckInputs = [ gitMinimal ];
|
||||||
|
|
||||||
cargoBuildFlags = [ "-p=biome_cli" ];
|
cargoBuildFlags = [ "-p=biome_cli" ];
|
||||||
cargoTestFlags =
|
cargoTestFlags = cargoBuildFlags ++ [
|
||||||
cargoBuildFlags
|
"-- --skip=commands::check::print_json"
|
||||||
++
|
"--skip=commands::check::print_json_pretty"
|
||||||
# skip a broken test from v1.7.3 release
|
"--skip=commands::explain::explain_logs"
|
||||||
# this will be removed on the next version
|
"--skip=commands::format::print_json"
|
||||||
[ "-- --skip=diagnostics::test::termination_diagnostic_size" ];
|
"--skip=commands::format::print_json_pretty"
|
||||||
|
"--skip=commands::format::should_format_files_in_folders_ignored_by_linter"
|
||||||
|
];
|
||||||
|
|
||||||
env = {
|
env = {
|
||||||
BIOME_VERSION = version;
|
BIOME_VERSION = version;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue