File: run-unit-test

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

set -e

for py in $(py3versions -s)
do
    pushd etelemetry/tests
    echo "Testing with $py in $(pwd):"
    http_proxy="" $py -m pytest -v
    popd
done