From b579a06a2b2f505e7b19e4aeeba0e75c74bb3086 Mon Sep 17 00:00:00 2001 From: Billy Earney Date: Mon, 17 Apr 2017 08:56:36 -0500 Subject: [PATCH] fix blink, resize error --- tests/test_issues.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/test_issues.py b/tests/test_issues.py index f5c823917..5c5c4ebe4 100644 --- a/tests/test_issues.py +++ b/tests/test_issues.py @@ -1,15 +1,18 @@ # -*- coding: utf-8 -*- """Issue tests meant to be run with pytest.""" import os -import sys +#import sys import pytest from moviepy.editor import * -sys.path.append("tests") +#sys.path.append("tests") import download_media from test_helper import PYTHON_VERSION, TMP_DIR, TRAVIS +from moviepy.video.fx.blink import blink +from moviepy.video.fx.resize import resize + def test_download_media(capsys): with capsys.disabled(): download_media.download()