Skip to content

Commit

Permalink
Don't run if on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
tburrows13 committed Feb 13, 2018
1 parent 1f25e8f commit c0ec612
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_videotools.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@
from moviepy.video.tools.credits import credits1

sys.path.append("tests")
from test_helper import TMP_DIR
from test_helper import TMP_DIR, TRAVIS


def test_credits():
if TRAVIS:
# Same issue with ImageMagick on Travis as in `test_TextClip.py`
return
credit_file = "# This is a comment\n" \
"# The next line says : leave 4 blank lines\n" \
".blank 2\n" \
Expand Down

0 comments on commit c0ec612

Please sign in to comment.