Skip to content

Commit

Permalink
Merge pull request #14 from k0t3n/feature/ci-cd
Browse files Browse the repository at this point in the history
Add CI/CD
  • Loading branch information
Alexey Kotenko authored Mar 26, 2020
2 parents 648592a + 400ec5d commit 72a869c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: python

python:
- 3.6
- 3.7
- 3.8

dist: xenial

install:
- pip install -r tests/requirements.txt
- pip install -e .
- pip install codecov

script:
- pytest --cov=./changelly_api

after_success:
- codecov
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelly API
[![Pypi](https://img.shields.io/pypi/v/changelly-api.svg)](https://pypi.python.org/pypi/changelly-api)
[![Build Status](https://travis-ci.com/k0t3n/changelly_api.svg?branch=master)](https://travis-ci.com/k0t3n/changelly_api)
[![codecov](https://codecov.io/gh/k0t3n/changelly_api/branch/master/graph/badge.svg)](https://codecov.io/gh/k0t3n/changelly_api)
![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/k0t3n/changelly_api)

**Changelly API** is a python wrapper library over Changelly RPC API.

Expand Down
2 changes: 2 additions & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
pytest-cov
codecov
pytest

0 comments on commit 72a869c

Please sign in to comment.