Skip to content

Commit

Permalink
remove test for python 3.5 since tk error
Browse files Browse the repository at this point in the history
  • Loading branch information
bearney74 committed Mar 6, 2017
1 parent 7d2c5b4 commit 0dc3f5c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/test_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,14 @@ def test_issue_368():
if sys.version_info < (3,4): #matplotlib only supported in python >= 3.4
return

# $DISPLAY not set error in 3.5, so ignore 3.5 for now
# $DISPLAY not set error in (travis-ci) python 3.5, so ignore 3.5 for now
if sys.version_info.major == 3 and sys.version_info.minor ==5:
return

import numpy as np
import matplotlib.pyplot as plt
from sklearn import svm # sklearn = scikit-learn
from sklearn import svm
from sklearn.datasets import make_moons
#from moviepy.editor import VideoClip
from moviepy.video.io.bindings import mplfig_to_npimage
import imageio

Expand Down Expand Up @@ -65,7 +64,6 @@ def make_frame(t):
animation.write_gif("/tmp/svm.gif",fps=20)



def test_issue_407():
red = ColorClip((800, 600), color=(255,0,0)).set_duration(5)
red.fps=30
Expand Down

0 comments on commit 0dc3f5c

Please sign in to comment.