File: run-unit-test

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

set -e

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