File: run-unit-test

package info (click to toggle)
python-fluent-logger 0.9.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 228 kB
  • sloc: python: 1,776; sh: 10; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -e

QUILT_PATCHES=debian/patches quilt push -a || true
for py in $(py3versions -s)
do
	echo "[*] testing on $py:"
	$py -Wd -m nose -v tests 2>&1
	$py -c "import fluent; print(fluent)"
done
QUILT_PATCHES=debian/patches quilt pop -a || true

echo "PASS"