File: python3-diff-match-patch

package info (click to toggle)
python-diff-match-patch 20241021-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: python: 2,527; sh: 6; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e -u

cd "$AUTOPKGTEST_TMP/"

export PYTHONWARNINGS=d
for py in $(py3versions -s); do
  $py -m pytest -rxs -v --pyargs diff_match_patch.tests.diff_match_patch_test 2>&1
done