summaryrefslogtreecommitdiff
path: root/runtests.sh
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2018-08-12 17:22:58 +0200
committerGitHub <noreply@github.com>2018-08-12 17:22:58 +0200
commitac0b956d006a4b7b32780e852740b56ecd826c7e (patch)
tree4576911add0e18525991109acdb2a91bc4b2fde8 /runtests.sh
parent488ec26798a4493ee0fc45e730f88f1365f56df7 (diff)
downloadpysnmp-git-ac0b956d006a4b7b32780e852740b56ecd826c7e.tar.gz
Add `hlapi.v1arch` API (#186)
* Add `hlapi.v1arch` API Introduce new sub-package `pysnmp.hlapi.v1arch` which wraps otherwise very detailed packet-level SNMP messaging into a handful of convenience functions. As a side effect, the `pysnmp.hlapi.*` sub-packages moved under `pysnmp.hlapi.v3arch` though `pysnmp.hlapi` still exposes `pysnmp.hlappi.v3arch.*` symbols to retain some degree of backward compatibility. The signature of the hlapi `.sendNotification()` call has changed to accept `*varBinds` instead of a sequence of `varBinds`. The rationale is to unify this method call with similar methods of CommandGenerator. * Add v1arch docs and reshuffle hlapi docs
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/runtests.sh b/runtests.sh
index 9143a769..fcb23f17 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -4,10 +4,14 @@ set -e
PYTHON=${1:-python}
-for x in examples/hlapi/asyncore/sync/manager/cmdgen/*.py \
- examples/hlapi/asyncore/sync/agent/ntforg/*.py \
- examples/hlapi/asyncore/manager/cmdgen/*.py \
- examples/hlapi/asyncore/agent/ntforg/*.py \
+for x in examples/hlapi/v3arch/asyncore/sync/manager/cmdgen/*.py \
+ examples/hlapi/v3arch/asyncore/sync/agent/ntforg/*.py \
+ examples/hlapi/v3arch/asyncore/manager/cmdgen/*.py \
+ examples/hlapi/v3arch/asyncore/agent/ntforg/*.py \
+ examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/*.py \
+ examples/hlapi/v1arch/asyncore/sync/agent/ntforg/*.py \
+ examples/hlapi/v1arch/asyncore/manager/cmdgen/*.py \
+ examples/hlapi/v1arch/asyncore/agent/ntforg/*.py \
examples/v3arch/asyncore/manager/cmdgen/*.py \
examples/v3arch/asyncore/agent/ntforg/*.py \
examples/v1arch/asyncore/manager/cmdgen/*.py \