Change to sane default timeout
Changes the default timeout from ~28 hours to 1 hour.
Fixed syntax errors in two log messages.
Adds unit tests for timeouts.
Adds nose config to create Junit style output.
Fixes bug 1014
Change-Id: I7d1c2d28b397adc3ac638aa2366925dc744eade3
Signed-off-by: beierlm <mark.beierl@canonical.com>
diff --git a/tox.ini b/tox.ini
index d2674c9..490d03e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,7 +13,7 @@
# limitations under the License.
[tox]
-envlist = cover, flake8, pylint
+envlist = cover, flake8, pylint, pylint-tests
skipsdist=True
[testenv]
@@ -37,7 +37,16 @@
pylint
-rrequirements.txt
commands =
- pylint -E n2vc
+ pylint -E n2vc --ignore=tests
+
+[testenv:pylint-tests]
+basepython = python3
+deps =
+ pylint
+ -rrequirements.txt
+ -rtest-requirements.txt
+commands =
+ pylint -E n2vc.tests
[testenv:black]
basepython = python3