File: run-pytest

package info (click to toggle)
pycares 4.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 5,584 kB
  • sloc: cpp: 30,176; ansic: 26,759; python: 2,347; makefile: 268; perl: 114; sh: 103; awk: 18
file content (9 lines) | stat: -rwxr-xr-x 143 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/bash
set -e

export DEBCI=True

for py3vers in $(py3versions -s); do
    echo "Testing with $py3vers:"
    $py3vers -m unittest -v
done