File: python

package info (click to toggle)
gr-osmosdr 0.2.6-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,936 kB
  • sloc: cpp: 16,524; python: 11,366; xml: 42; ansic: 34; makefile: 16; sh: 5
file content (8 lines) | stat: -rwxr-xr-x 159 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/sh

set -eu

for python in $(py3versions -d); do
  echo "Testing $python ..."
  $python -c 'import gnuradio, gnuradio.gr, osmosdr; print(osmosdr)'
done