File: pytest

package info (click to toggle)
pyobjcryst 2024.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,964 kB
  • sloc: cpp: 5,824; python: 3,423; makefile: 17; sh: 6
file content (7 lines) | stat: -rwxr-xr-x 181 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#!/bin/sh
set -e
cd /tmp/
for python in $(py3versions -s); do
    $python -m pytest -o cache_dir=/tmp/ -s -v \
        /usr/lib/python3/dist-packages/pyobjcryst/tests/test*.py
done