File: python3-unit-tests

package info (click to toggle)
python-pika-pool 0.1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 100 kB
  • sloc: python: 384; makefile: 31; sh: 10
file content (11 lines) | stat: -rwxr-xr-x 196 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
#---------------------------
# Run pika-pool unit tests
#---------------------------
set -e

PYTHON3S=$(py3versions -s)

for pyvers in $PYTHON3S; do
    $pyvers -m pytest test.py
done