File: pytest

package info (click to toggle)
pexpect 4.9-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,184 kB
  • sloc: python: 10,774; makefile: 138; sh: 73; ansic: 69
file content (13 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh -e

# used upstream to flag some tests as flaky in CI
export CI=1

# copy the tests out of the source tree to use the installed lib
cp -r tests $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP

# see d/rules for comments on why these tests are skipped
for py in $(py3versions --supported); do
    $py -m pytest -v -k 'not (pxssh or replwrap or test_before_across_chunks or test_spawn_uses_env or test_socket)' tests
done