File: doctests

package info (click to toggle)
python-strictyaml 1.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,708 kB
  • sloc: python: 12,836; sh: 48; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -euo pipefail

DIR="/usr/lib/python3/dist-packages/strictyaml/"

cd "$AUTOPKGTEST_TMP"

for p in $(py3versions -s); do
    echo "Running doctest with ${p}:"
    "${p}" -m doctest -v "$DIR/utils.py"
done