File: run-tests

package info (click to toggle)
sphinx-remove-toctrees 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 152 kB
  • sloc: python: 124; makefile: 14; sh: 7
file content (9 lines) | stat: -rw-r--r-- 203 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/bash 
set -e

cp -r sphinx_remove_toctrees/tests "$AUTOPKGTEST_TMP"
for py in $(py3versions -r 2>/dev/null)
do cd "$AUTOPKGTEST_TMP"
  echo "Testing with $py:"
  http_proxy= $py -m pytest -v
done