test_nxos.sh 238 B

1234567891011
  1. #!/bin/sh
  2. RETURN_CODE=0
  3. echo "Starting tests...good luck:" \
  4. && echo "Cisco NXOS" \
  5. && py.test -v test_netmiko_show.py --test_device nxos1 \
  6. && py.test -v test_netmiko_config.py --test_device nxos1 \
  7. || RETURN_CODE=1
  8. exit $RETURN_CODE