File: pytest

package info (click to toggle)
ipykernel 6.30.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,084 kB
  • sloc: python: 9,165; makefile: 165; sh: 8
file content (13 lines) | stat: -rwxr-xr-x 233 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e -u -x

PYS=$(py3versions -s)

cp -r pyproject.toml tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $PYS; do
    echo "Testing with $py:"
    timeout 300 $py -m pytest -v -k 'not test_init_ipc_socket'
done