Skip to content

Commit

Permalink
fixes for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
1adrianb committed Sep 18, 2017
1 parent 67f1b4a commit 6293971
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
opencv-python
dlib>=19.5.0
dlib==19.5.0
scipy>=0.17.0
scikit-image
7 changes: 7 additions & 0 deletions test/facealignment_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import unittest
from face_alignment import *

class Tester(unittest.TestCase):
@classmethod
def setUpClass(self):
self._fa = face_alignment.FaceAlignment(face_alignment.LandmarksType._3D, enable_cuda=False)
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[flake8]
max-line-length = 120
ignore = E305,E402,E721,F401,F403,F405,F821,F841,F999

0 comments on commit 6293971

Please sign in to comment.