tests: skip builds for warning-only cases

This commit is contained in:
Austin Horstman 2026-04-24 16:42:11 -05:00
parent 494348a800
commit 02bf85b6d4
4 changed files with 8 additions and 0 deletions

View file

@ -145,5 +145,6 @@
];
test.runNvim = false;
test.buildNixvim = false;
};
}

View file

@ -2,6 +2,7 @@
empty = {
# Tries to write to a log file
test.runNvim = false;
test.buildNixvim = false;
plugins.java.enable = true;
@ -15,6 +16,7 @@
defaults = {
# Tries to write to a log file
test.runNvim = false;
test.buildNixvim = false;
plugins.java = {
enable = true;
@ -72,6 +74,7 @@
explicit-disable-spring-boot-tools = {
# Tries to write to a log file
test.runNvim = false;
test.buildNixvim = false;
plugins.java = {
enable = true;
@ -86,6 +89,7 @@
with-spring-boot-plugin = {
# Tries to write to a log file
test.runNvim = false;
test.buildNixvim = false;
plugins = {
java.enable = true;

View file

@ -64,6 +64,7 @@
warning-no-highlight = {
test.runNvim = false;
test.buildNixvim = false;
test.warnings = expect: [
(expect "count" 1)
(expect "any" "You have enabled otter, but treesitter syntax highlighting is not enabled.")
@ -77,6 +78,7 @@
warning-no-treesitter = {
test.runNvim = false;
test.buildNixvim = false;
test.warnings = expect: [
(expect "count" 1)
(expect "any" "You have enabled otter, but treesitter syntax highlighting is not enabled.")

View file

@ -134,6 +134,7 @@
legacy-highlight-disable-warning = {
test.runNvim = false;
test.buildNixvim = false;
test.warnings = expect: [
(expect "count" 1)
(expect "any" "`plugins.treesitter.settings.highlight.disable` is an upstream legacy nvim-treesitter")