Browse Source

apparently python 2.6 doesn't have test discovery

Daniel Roesler 9 years ago
parent
commit
7cbf7ecc35
2 changed files with 2 additions and 1 deletions
  1. 1 1
      .travis.yml
  2. 1 0
      tests/__init__.py

+ 1 - 1
.travis.yml

@@ -7,4 +7,4 @@ python:
   - "3.4"
   - "3.5"
   - "nightly"
-script: python -m unittest discover
+script: python -m unittest tests

+ 1 - 0
tests/__init__.py

@@ -0,0 +1 @@
+from .test_module import TestModule