File: python3-markdown2

package info (click to toggle)
python-markdown2 2.3.10-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,280 kB
  • sloc: python: 2,897; 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