Skip to content

Commit

Permalink
New release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Jun 1, 2017
1 parent dbce704 commit 16dbb57
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion netmiko/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 2 additions & 0 deletions release_process.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Use pynetcio machine

# Make sure you have rolled the version in __init__.py

# pylama code (from ./netmiko)
pylama

Expand Down
11 changes: 11 additions & 0 deletions tests/test_iosxe.sh
Original file line number Diff line number Diff line change
@@ -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
10 changes: 6 additions & 4 deletions tests/test_suite_alt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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 \
#\

0 comments on commit 16dbb57

Please sign in to comment.