Browse Source

Merge branch 'master' of github.com:algoo/hapic

Bastien Sevajol 6 years ago
parent
commit
9ba23e1d61
3 changed files with 6 additions and 4 deletions
  1. 2 2
      .coveralls.yml
  2. 1 2
      .travis.yml
  3. 3 0
      README.md

+ 2 - 2
.coveralls.yml View File

@@ -1,2 +1,2 @@
1
-service_name: travis-pro
2
-repo_token: FipUGbTT4XLGpZMktE2U0aa9CqX27vYMQ
1
+service_name: travis-ci
2
+

+ 1 - 2
.travis.yml View File

@@ -1,13 +1,12 @@
1 1
 sudo: false
2 2
 language: python
3 3
 python:
4
-  - "3.4"
5 4
   - "3.5"
6 5
   - "3.6"
7 6
 
8 7
 install:
9 8
   - python setup.py develop
10
-  - pip install pytest pytest-cov
9
+  - pip install pytest pytest-cov python-coveralls
11 10
 
12 11
 script: 
13 12
   - pytest --cov=hapic tests

+ 3 - 0
README.md View File

@@ -1,3 +1,6 @@
1
+[![Build Status](https://travis-ci.org/algoo/hapic.svg?branch=master)](https://travis-ci.org/algoo/hapic)
2
+[![Coverage Status](https://coveralls.io/repos/github/algoo/hapic/badge.svg?branch=master)](https://coveralls.io/github/algoo/hapic?branch=master)
3
+
1 4
 # hapic
2 5
 Input/Output/Error management for your python controllers with Swagger doc generation
3 6