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',
'BeautifulSoup4',
],
tests_require=[
'tox',
'mock',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',

View File

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