add circle.yml

This commit is contained in:
Kyle Mahan 2016-03-18 12:36:55 -07:00
parent 7ce70f5cac
commit 1a52e4f714
3 changed files with 14 additions and 2 deletions

7
circle.yml Normal file
View File

@ -0,0 +1,7 @@
dependencies:
pre:
- pip install tox
test:
override:
- tox

View File

@ -27,6 +27,10 @@ setup(
'requests', 'requests',
'BeautifulSoup4', 'BeautifulSoup4',
], ],
tests_require=[
'tox',
'mock',
],
classifiers=[ classifiers=[
'Environment :: Web Environment', 'Environment :: Web Environment',
'Intended Audience :: Developers', 'Intended Audience :: Developers',

View File

@ -2,5 +2,6 @@
[tox] [tox]
envlist = py26,py27,py33,py34,py35 envlist = py26,py27,py33,py34,py35
[testenv] [testenv]
deps=mock deps =
commands=python -m unittest discover py{26,27}: mock
commands = python -m unittest discover