ソースを参照

need to install coverage before running CI tests

kmpm 8 年 前
コミット
d48462c403
2 ファイル変更2 行追加1 行削除
  1. 1 1
      .travis.yml
  2. 1 0
      test_requirements.txt

+ 1 - 1
.travis.yml

@@ -3,7 +3,7 @@ python:
   - "2.7"
 
 # command to install dependencies
-#install: "pip install -r requirements.txt"
+install: "pip install -r test_requirements.txt"
 
 # command to run tests
 script:

+ 1 - 0
test_requirements.txt

@@ -0,0 +1 @@
+coverage==4.0.3