Skip to content

Commit 646c919

Browse files
committed
Add travis
1 parent f3f0bd9 commit 646c919

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

.travis.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
language: python
2+
3+
python:
4+
- "2.7"
5+
- "3.6"
6+
7+
install:
8+
- pip install -r requirements.txt
9+
- pip install --upgrade pytest
10+
11+
script:
12+
- py.test --cov-report term --cov=cryptopay
13+
14+
after_success:
15+
- codecov
16+
17+
18+
deploy:
19+
provider: pypi
20+
user: pipo
21+
password:
22+
secure: dK5RI162xNN/zfaL09UMbzZ6euqTEQQ8oBm5VMzPxWE6BPNnaFkfjEZSQMQ/7c/Bu7tgIO9f0RklrE4We7iFkOHwcGuFJVI1gMA/GJ55/2MEuUvDVddfv9zhQ52Lu8pCmFgIwe/rJNA9L7uPfeo767oVN+l1xiO08SHwikMwAowtH5M2IPNDQ4NnLIRfvT+SboTzJ2T0IVvijgSFIIH9Woo59kCKn2MK96NPHkawzB+nRsUu3rorGOdG1KNQr0SC8xhM2LJjXmhfPfiOMSqbubwosgW3GzqVGEh3HggWY9k2+DpYrV2COoYrqPeXnir7yCwWmWVXXtHR8l8hczK5CeO8k8iR4P/+qQTrI3U7NYa/pox5EvGB0smthpOiu/b3GNYO/c9DOY39VjgqQGuA1KzqbDkG14ZCm9w5RCWmiR8ETchrCexcyWKHUzjaFR9jrCZ7xe6MrRw/AmYKZxUP93VSxwrtmBRK9/krK0l4CeBakttLGp1CBLrc7TPDJO6lalA2xpxeLQCxB3AIbyO0Rib5//IcHcJCqGEjRaa9mvf5TyV3xXOy9udjAiCeIDQ9zdruSSQtVKJBLzrLhjOVTYQlcuvM7EFwdCXRuu8jnPYq9YWs/5pel26guswhJptl1/8H6aGUeCvboT3Cqb5RXelQYyckSgHa73z0GUK+eDI=
23+
on:
24+
tags: true
25+
python: "3.6"
26+
distributions: "bdist_wheel"

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
requests
2+
pytest
3+
pytest-flakes
4+
pytest-pep8
5+
pytest-cov
6+
codecov

0 commit comments

Comments
 (0)