File: unittests

package info (click to toggle)
python-shopifyapi 12.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 560 kB
  • sloc: python: 1,752; sh: 10; makefile: 9
file content (14 lines) | stat: -rw-r--r-- 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -efu

pkg=python3-shopifyapi
pys="$(py3versions -s 2> /dev/null)"

cd "$AUTOPKGTEST_TMP"
cp -a /usr/share/${pkg}/test/ .
cp -a /usr/lib/python3/dist-packages/shopify/ .

for py in $pys; do
  echo "=== $py ==="
  $py test/test_helper.py
done