diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/.travis.yml b/.travis.yml index c652e8d..17f7516 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,16 @@ -language: python -python: - - "2.7" - -# command to install dependencies -install: - - "pip install -r requirements.txt" - - "pip install coveralls" - -# command to run tests -script: - - make test-coverage - -# Coveralls -after-success: - - coveralls +language: python
+python:
+ - "2.7"
+
+# command to install dependencies
+install:
+ - "pip install -r requirements.txt"
+ - "pip install coveralls"
+
+# command to run tests
+script:
+ - make test-coverage
+
+# Coveralls
+after_success:
+ - coveralls
|