File: unittests

package info (click to toggle)
python-cffi 1.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,440 kB
  • ctags: 4,423
  • sloc: python: 25,052; ansic: 12,528; asm: 116; makefile: 97; sh: 28
file content (23 lines) | stat: -rwxr-xr-x 575 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
set -efu

pythons="$(pyversions -r)"
cp -a c testing "$ADTTMP"

# Not appropriate:
rm "$ADTTMP"/testing/cffi0/test_version.py
rm "$ADTTMP"/testing/cffi1/test_parse_c_type.py

# Temporary hack until cffi defaults to calling virtualenv with --never-download
export VIRTUALENV_DOWNLOAD=no

# Delete any stale __pycache__s
find "$ADTTMP" -name '__pycache__' -print0 | xargs -0 rm -rf

cd "$ADTTMP"
for py in $pythons; do
	echo "======= $py ======="
	$py -m pytest --tb=native c testing
	echo "======= $py-dbg ======="
	$py-dbg -m pytest --tb=native c testing 2>&1
done