Skip to content

Commit 0c16203

Browse files
committed
Adds travis
1 parent c562c0c commit 0c16203

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
# sudo false implies containerized builds
3+
#sudo: false
4+
python:
5+
- "3.7"
6+
before_install:
7+
- pip install pytest pytest-cov
8+
- pip install coveralls
9+
install:
10+
- pip install -r requirements.txt
11+
- pip install -r requirements-dev.txt
12+
# command to run tests
13+
script:
14+
- py.test
15+
after_success:
16+
- coveralls

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = "0.1"
3+
VERSION = "0.2"
44

55
REQUIRES = ["requests"]
66

0 commit comments

Comments
 (0)