tests: disable vectorcode
Dependency python3.14-frictionless-5.18.1 fails to build.
This commit is contained in:
parent
787af2e44d
commit
1b06626c17
4 changed files with 21 additions and 0 deletions
|
|
@ -44,6 +44,11 @@ let
|
|||
# 2026-02-05: build failure
|
||||
"skim"
|
||||
]
|
||||
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isx86_64) [
|
||||
# 2026-07-12 dependency python3.frictionless has a build failure
|
||||
"vectorcode"
|
||||
"vectorcode.nvim"
|
||||
]
|
||||
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||
# 2026-06-15: semgrep fails its installCheckPhase
|
||||
"semgrep"
|
||||
|
|
|
|||
|
|
@ -37,6 +37,9 @@ let
|
|||
let
|
||||
|
||||
disabled = [
|
||||
# 2026-07-12 dependency python3.frictionless has a build failure
|
||||
"vectorcode_server"
|
||||
|
||||
# 2026-07-02 insecure dependency (pnpm-9.15.9)
|
||||
"stylelint_lsp"
|
||||
"volar"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,10 @@ let
|
|||
inherit (pkgs.stdenv) hostPlatform;
|
||||
|
||||
disabledDeps = [
|
||||
# TODO: 2026-07-12
|
||||
# Dependency python3.frictionless has a build failure
|
||||
"vectorcode"
|
||||
|
||||
# TODO: 2025-10-03
|
||||
# Transient dependency `vmr` has a build failure
|
||||
# https://github.com/NixOS/nixpkgs/issues/431811
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@
|
|||
empty =
|
||||
{ config, ... }:
|
||||
{
|
||||
# TODO: 2026-07-12 dependency python3.frictionless has a build failure
|
||||
test.buildNixvim = false;
|
||||
|
||||
plugins.vectorcode.enable = true;
|
||||
|
||||
assertions = [
|
||||
|
|
@ -64,6 +67,9 @@
|
|||
};
|
||||
|
||||
defaults = {
|
||||
# TODO: 2026-07-12 dependency python3.frictionless has a build failure
|
||||
test.buildNixvim = false;
|
||||
|
||||
plugins.vectorcode = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
@ -98,6 +104,9 @@
|
|||
};
|
||||
|
||||
example = {
|
||||
# TODO: 2026-07-12 dependency python3.frictionless has a build failure
|
||||
test.buildNixvim = false;
|
||||
|
||||
plugins.vectorcode = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue