From 16dbb57f30b6f3057054fbeefd15bbb910526161 Mon Sep 17 00:00:00 2001 From: Kirk Byers Date: Thu, 1 Jun 2017 14:07:18 -0700 Subject: [PATCH] New release 1.4.1 --- netmiko/__init__.py | 2 +- release_process.txt | 2 ++ tests/test_iosxe.sh | 11 +++++++++++ tests/test_suite_alt.sh | 10 ++++++---- 4 files changed, 20 insertions(+), 5 deletions(-) create mode 100755 tests/test_iosxe.sh diff --git a/netmiko/__init__.py b/netmiko/__init__.py index 033ea7235..ab4ce08ed 100644 --- a/netmiko/__init__.py +++ b/netmiko/__init__.py @@ -21,7 +21,7 @@ NetmikoTimeoutError = NetMikoTimeoutException NetmikoAuthError = NetMikoAuthenticationException -__version__ = '1.4.0' +__version__ = '1.4.1' __all__ = ('ConnectHandler', 'ssh_dispatcher', 'platforms', 'SCPConn', 'FileTransfer', 'NetMikoTimeoutException', 'NetMikoAuthenticationException', diff --git a/release_process.txt b/release_process.txt index 59d38bdc4..4d2a7525d 100644 --- a/release_process.txt +++ b/release_process.txt @@ -1,5 +1,7 @@ # Use pynetcio machine +# Make sure you have rolled the version in __init__.py + # pylama code (from ./netmiko) pylama diff --git a/tests/test_iosxe.sh b/tests/test_iosxe.sh new file mode 100755 index 000000000..53a44f7f0 --- /dev/null +++ b/tests/test_iosxe.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +RETURN_CODE=0 + +echo "Starting tests...good luck:" \ +&& echo "Cisco IOS-XE" \ +&& py.test -v test_netmiko_show.py --test_device ios_xe \ +&& py.test -v test_netmiko_config.py --test_device ios_xe \ +|| RETURN_CODE=1 + +exit $RETURN_CODE diff --git a/tests/test_suite_alt.sh b/tests/test_suite_alt.sh index 5ab0bb7b1..e5d00dce4 100755 --- a/tests/test_suite_alt.sh +++ b/tests/test_suite_alt.sh @@ -39,10 +39,6 @@ echo "Starting tests...good luck:" \ && py.test -v test_netmiko_show.py --test_device hp_procurve \ && py.test -v test_netmiko_config.py --test_device hp_procurve \ \ -&& echo "HP Comware7" \ -&& py.test -v test_netmiko_show.py --test_device hp_comware \ -&& py.test -v test_netmiko_config.py --test_device hp_comware \ -\ && echo "Juniper" \ && py.test -v test_netmiko_show.py --test_device juniper_srx \ && py.test -v test_netmiko_config.py --test_device juniper_srx \ @@ -74,3 +70,9 @@ exit $RETURN_CODE #&& echo "Cisco NXOS" \ #&& py.test -v test_netmiko_show.py --test_device nxos1 \ #&& py.test -v test_netmiko_config.py --test_device nxos1 \ + + +#&& echo "HP Comware7" \ +#&& py.test -v test_netmiko_show.py --test_device hp_comware \ +#&& py.test -v test_netmiko_config.py --test_device hp_comware \ +#\