Skip to content

Commit

Permalink
Added another $CI_TESTING check
Browse files Browse the repository at this point in the history
  • Loading branch information
devel-chm committed Oct 7, 2015
1 parent 6a4bda2 commit 2038857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/opengl.t
Expand Up @@ -50,8 +50,8 @@ SKIP: {
if ( hasDISPLAY and OpenGL::_have_glx ) {
eval { OpenGL::glpDisplay($ENV{DISPLAY}) };
skip "can't open X display", 2 if $@;
} elsif ( $ENV{AUTOMATED_TESTING} ) {
skip "don't open try GL windows if \$AUTOMATED_TESTING is set", 2;
} elsif ( $ENV{AUTOMATED_TESTING} or $ENV{CI_TESTING} ) {
skip "don't open try GL windows if \$AUTOMATED_TESTING or \$CI_TESTING is set", 2;
} else {

my $numwins = 2;
Expand Down

0 comments on commit 2038857

Please sign in to comment.