File: python3-unit-tests

package info (click to toggle)
python-pika-pool 0.1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 92 kB
  • sloc: python: 384; makefile: 12; sh: 5
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