diff options
author | Ladue, David (dl3158) <dl3158@att.com> | 2018-03-14 14:01:36 -0400 |
---|---|---|
committer | Ladue, David (dl3158) <dl3158@att.com> | 2018-03-18 02:42:23 -0400 |
commit | abb283c5a3b72eb2d91e6adb4eda68184f040f35 (patch) | |
tree | 4765c8d6cb54a2ddb2052c0955425604bc265230 /tests/tox.ini | |
parent | a6f91efda578965710630154b173cf1ee9b64727 (diff) |
copyright and controller ENV changes
Change-Id: Ic12aa439a03f19c7a06a536368a8d2a1f26855aa
Issue-ID: DCAEGEN2-271
Signed-off-by: Ladue, David (dl3158) <dl3158@att.com>
Diffstat (limited to 'tests/tox.ini')
-rw-r--r-- | tests/tox.ini | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/tox.ini b/tests/tox.ini new file mode 100644 index 0000000..3d8e842 --- /dev/null +++ b/tests/tox.ini @@ -0,0 +1,15 @@ +[tox] +envlist = py36 + +[testenv] +deps = coverage +commands = coverage erase + +[testenv:py36] +deps = coverage pytest +commands = coverage run ../bin/snmptrapd.py & + pytest test_trapd_exit.py + pytest test_trapd_http_session.py + pytest test_trapd_runtime_pid.py + ./test_snmptrapd_send_test_trap.py & + coverage report -m |