File: verify.sh

package info (click to toggle)
python-openflow 2021.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,224 kB
  • sloc: python: 6,906; sh: 4; makefile: 4
file content (8 lines) | stat: -rwxr-xr-x 182 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/bash

set -e -u

for py in $(py3versions --supported); do
    $py -m pytest -v tests -k 'not test_unpack'
    #Disabled test_unpack needing missing ofpt_port_status.dat.
done