File: python3-markdown2

package info (click to toggle)
python-markdown2 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,384 kB
  • sloc: python: 5,075; perl: 1,493; php: 865; makefile: 35; sh: 6
file content (10 lines) | stat: -rwxr-xr-x 203 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

python3_versions="$(py3versions -r 2> /dev/null)"

cp -a "test" "${AUTOPKGTEST_TMP}"
cd "${AUTOPKGTEST_TMP}"

for python3 in $python3_versions; do
    $python3 -m pytest test || exit 1
done