diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2020-03-05 05:41:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-05 05:41:53 +0000 |
commit | 2b2aa9977411519081fcab8ce4d1c37d3d9ee1d4 (patch) | |
tree | 635bdc444eb2f8452545d387f46f9bcf7926d602 /oti/event-handler/tox-local.ini | |
parent | ff35e66284400a0d65302b77374826faebd54925 (diff) | |
parent | 2f2980df45d2d08c7a48c4a744bd893828f725f9 (diff) |
Merge "Initial unit test coverage"
Diffstat (limited to 'oti/event-handler/tox-local.ini')
-rw-r--r-- | oti/event-handler/tox-local.ini | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/oti/event-handler/tox-local.ini b/oti/event-handler/tox-local.ini new file mode 100644 index 0000000..fdfa4fc --- /dev/null +++ b/oti/event-handler/tox-local.ini @@ -0,0 +1,16 @@ +# tox -c tox-local.ini +[tox] +envlist = py36 +skip_missing_interpreters = true + +[testenv] +deps= + -rrequirements.txt + pytest + coverage + pytest-cov +setenv = + PYTHONPATH={toxinidir} +recreate = True +commands= + pytest --cov otihandler --cov-report=html --cov-report=term --verbose tests |