File: python3-lark

package info (click to toggle)
python-lark 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,788 kB
  • sloc: python: 13,305; javascript: 88; makefile: 34; sh: 8
file content (17 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -eu

cp -r tests "$AUTOPKGTEST_TMP/"

cd "$AUTOPKGTEST_TMP"

# Do not run nearley tests
# (see https://bugs.debian.org/941657#22 for background information)
rm -rf tests/test_nearley

# Run tests using "python<version> -m tests",
# see https://github.com/lark-parser/lark/issues/792 for details
for python in $(py3versions -s); do
	PYTHONWARNINGS=d $python -m tests 2>&1
done