diff options
author | Hamilton Kibbe <ham@hamiltonkib.be> | 2014-09-30 17:52:33 -0400 |
---|---|---|
committer | Hamilton Kibbe <ham@hamiltonkib.be> | 2014-09-30 17:52:33 -0400 |
commit | d194ed4110f2b12a7d97c8a4909b4470cc0d1b28 (patch) | |
tree | 07c766de07756e6fe0839000df76c9320568c073 | |
parent | ae4047b2600c5ff6be3a1d0ab8e8573f49107c7f (diff) | |
download | gerbonara-d194ed4110f2b12a7d97c8a4909b4470cc0d1b28.tar.gz gerbonara-d194ed4110f2b12a7d97c8a4909b4470cc0d1b28.tar.bz2 gerbonara-d194ed4110f2b12a7d97c8a4909b4470cc0d1b28.zip |
Fix coveralls
-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
|