diff options
author | Barry Warsaw <barry@python.org> | 2015-01-21 15:14:24 -0500 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2015-01-21 15:14:24 -0500 |
commit | ee4a174e2e3b3268ef95485b99d81edea1ca3458 (patch) | |
tree | ed6ece63e85aea7782227159f4cf0e57c4b1a99e /tox.ini | |
parent | 8d453d2a4da4492857a4487b14fe7b11a014115b (diff) | |
download | vyos-cloud-init-ee4a174e2e3b3268ef95485b99d81edea1ca3458.tar.gz vyos-cloud-init-ee4a174e2e3b3268ef95485b99d81edea1ca3458.zip |
* Added a simple tox.ini file
* Use universal_newlines in setup.py so it will work properly in Python 3.
* Fix a pyflakes complaint in setup.py
* Add a simple MANIFEST.in
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..883f6196 --- /dev/null +++ b/tox.ini @@ -0,0 +1,13 @@ +[tox] +envlist = py26,py27,py34 +recreate = True + +[testenv] +commands = python -m nose tests +deps = + httpretty>=0.7.1 + mock + mocker + nose + pep8==1.5.7 + pyflakes |