Skip to content

Commit 4c5b328

Browse files
committed
ci: condition on display var
1 parent 8d065ba commit 4c5b328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
)
1717

1818
func TestTranscoding(t *testing.T) {
19-
if os.Getenv("CI") != "" {
19+
if _, ok := os.LookupEnv("DISPLAY"); !ok {
2020
t.Skip("Skipping testing in CI environment")
2121
}
2222
for mime, codec := range codecs.SupportedCodecs {

0 commit comments

Comments
 (0)