Skip to content

Commit 690629b

Browse files
committed
added tox support
1 parent 5803df4 commit 690629b

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ build
33
dist
44
*.egg-info
55
*.egg
6+
.tox
7+

statsd/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
]
2020

2121
__name__ = 'python-statsd'
22-
__version__ = '1.5.6'
22+
__version__ = '1.5.7'
2323
__author__ = 'Rick van Hattem'
2424
__author_email__ = '[email protected]'
2525
__description__ = ('''statsd is a client for Etsy's node-js statsd server. '''

tox.ini

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[tox]
2+
envlist = py25, py26, py27
3+
4+
[testenv]
5+
commands =
6+
{envpython} setup.py nosetests
7+

0 commit comments

Comments
 (0)