File: python3-markups

package info (click to toggle)
pymarkups 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 264 kB
  • sloc: python: 1,102; sh: 7; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -eux
cp -r tests README.rst "$AUTOPKGTEST_TMP/"
cd "$AUTOPKGTEST_TMP"

for python in $(py3versions -s); do
    $python -m unittest discover -s tests -v
    $python -m doctest README.rst -v
done