Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy committed Jan 27, 2025
1 parent 6c26cf7 commit c7bf80c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
Expand Down Expand Up @@ -109,6 +112,7 @@ static Stream<String> failing() {
// local machine. Putting a set of .nanorc files into the code base would pull in GPL licensed elements.
@ParameterizedTest
@MethodSource
@EnabledOnOs(OS.LINUX)
void processLocalNanorcFile(Path nanorcFile) throws Exception {
Map<String, String> colorTheme = new HashMap<>();
String name = nanorcFile.getFileName().toString().replaceAll("[.].*", "");
Expand Down

0 comments on commit c7bf80c

Please sign in to comment.