Refactor docker timeouts for opteng image
[optf/osdf.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 58ed633..11c541a 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -5,6 +5,7 @@ envlist = py3, pylint
 
 [testenv]
 distribute = False
+basepython=python3
 setenv   =
     OSDF_CONFIG_FILE={toxinidir}/test/config/osdf_config.yaml
 commands =
@@ -16,13 +17,15 @@ commands =
     # TODO: need to update the above "omit" when we package osdf as pip-installable
 deps = -r{toxinidir}/requirements.txt
     -r{toxinidir}/test/test-requirements.txt
+    -r{toxinidir}/requirements-osdf.txt
+    -r{toxinidir}/requirements-opteng.txt
 
 [run]
-source=./osdf/,osdfapp.py
+source=./apps/,./osdf/,osdfapp.py,./runtime/,solverapp.py
 
 [testenv:pylint]
 whitelist_externals=bash
-commands = bash -c "pylint --reports=y osdf | tee pylint.out"
+commands = bash -c "pylint --reports=y osdf apps runtime| tee pylint.out"
 
 [testenv:py3]
 basepython=python3.6