File: upstream

package info (click to toggle)
lektor 3.3.12-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,856 kB
  • sloc: python: 14,376; javascript: 77; makefile: 37; sh: 7; xml: 1
file content (11 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -efu

cp pyproject.toml ${AUTOPKGTEST_TMP}
cp -r tests ${AUTOPKGTEST_TMP}

cd ${AUTOPKGTEST_TMP}
for p in $(py3versions -s); do
    $p -m pytest tests -m 'not requiresinternet'
done