File: pytest

package info (click to toggle)
python-libtmux 0.46.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,372 kB
  • sloc: python: 7,716; makefile: 199; sh: 21
file content (19 lines) | stat: -rwxr-xr-x 504 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

export PYTHONWARNINGS=d

python3_all="$(py3versions -s 2>/dev/null)"

TESTS_TO_EXCLUDE="not test_pytest_plugin and not test_function_times_out_no_rise and not test_function_times_out and not test_retry_three_times_no_raise_assert and not test_session_new_window_with_direction and not test_new_window_with_direction"

cp -r tests $AUTOPKGTEST_TMP
cd "$AUTOPKGTEST_TMP"

ret=0

for py in $python3_all; do
    echo "=== $py ==="
    $py -m pytest -k "$TESTS_TO_EXCLUDE" || ret=1
done

exit $ret