diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -9,11 +9,15 @@ basepython=python3 setenv = OSDF_CONFIG_FILE={toxinidir}/test/config/osdf_config.yaml commands = + /bin/cp config/slicing_config.yaml test/config/ + /bin/cp config/slicing_config.yaml test/functest/simulators/simulated-config/ /bin/bash test/functest/scripts/start-simulators.sh coverage run --module pytest --junitxml xunit-results.xml coverage xml --omit=".tox/py3/*","test/*" coverage report -m --omit=".tox/py3/*","test/*" /bin/bash test/functest/scripts/stop-simulators.sh + /bin/rm test/config/slicing_config.yaml + /bin/rm test/functest/simulators/simulated-config/slicing_config.yaml # 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 @@ -31,6 +35,7 @@ commands = bash -c "pylint --reports=y osdf apps runtime| tee pylint.out" basepython=python3.6 [testenv:flake8diff] +basepython=python3.6 whitelist_externals=bash deps = hacking>=2.0.0 commands = @@ -39,5 +44,5 @@ commands = [flake8] select = E,H,W,F max-line-length = 119 -ignore = +ignore = W503 #conflict with W504 per-file-ignores= |