Skip to content

Commit

Permalink
fix: README structure
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Sep 2, 2021
1 parent 1a3a1cb commit d765255
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -21,9 +21,9 @@ before_install:
- pip install --upgrade pip setuptools
install:
- pip install -r requirements.txt
- pip install coveralls
script: coverage run --source=easypay setup.py test
after_success: coveralls
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi
script: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=easypay setup.py test; else python setup.py test; fi
after_success: if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi
deploy:
provider: pypi
user: joamag
Expand Down
7 changes: 7 additions & 0 deletions README.md
@@ -1,3 +1,10 @@
# [Easypay API](http://easypay-api.hive.pt)

API client for the Easypay service, conformant with the typical Python API client provided by Hive Solutions.

## Build Automation

[![Build Status](https://app.travis-ci.com/hivesolutions/easypay_api.svg?branch=master)](https://travis-ci.com/github/hivesolutions/easypay_api)
[![Coverage Status](https://coveralls.io/repos/hivesolutions/easypay_api/badge.svg?branch=master)](https://coveralls.io/r/hivesolutions/easypay_api?branch=master)
[![PyPi Status](https://img.shields.io/pypi/v/easypay_api.svg)](https://pypi.python.org/pypi/easypay_api)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/)

0 comments on commit d765255

Please sign in to comment.