File: check

package info (click to toggle)
argparse-manpage 4.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 536 kB
  • sloc: python: 2,755; makefile: 47; sh: 18
file content (5 lines) | stat: -rwxr-xr-x 125 bytes parent folder | download
1
2
3
4
5
#! /bin/bash -x

for python in ${PYTHON-python3}; do
    PYTHONPATH=$(pwd) ${python/-dev/} -m pytest -vv "$@" || exit 1
done