File: unittests

package info (click to toggle)
python-pecan 1.5.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,296 kB
  • sloc: python: 10,389; makefile: 131; sh: 17
file content (8 lines) | stat: -rw-r--r-- 218 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/sh

set -e

PYTHON3S=$(py3versions -vr 2>/dev/null)
for i in ${PYTHON3S} ; do
	PYTHONPATH=. python$i -m pytest -v -k 'not test_config_with_non_package_relative_import and not test_genshi and not test_mako'
done