From f68b9d41d665d56115ee9803fbffcf620c322104 Mon Sep 17 00:00:00 2001 From: Adam Gandelman Date: Tue, 28 Apr 2015 09:17:27 -0700 Subject: [PATCH] Add a tox.ini placeholder This doesn't do much but allows the python-jobs to pass in gate in the meantime. Long term we can employ dib-lint from diskimage-builder to enforce some lintian checks on the element code. Change-Id: I14331c57b4cc7525af47c9d4b83ff6e879e1c549 --- tox.ini | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..36f81be --- /dev/null +++ b/tox.ini @@ -0,0 +1,18 @@ +[tox] +envlist = py34,py26,py27,pep8 +minversion = 1.6 +skipsdist = True + +[testenv] +commands= + python -c "print 'nothing to do yet'" + +[testenv:pep8] +commands = + python -c "print 'nothing to do yet'" + +[testenv:venv] +commands = {posargs} + +[testenv:docs] +commands = python setup.py build_sphinx