File: pytest

package info (click to toggle)
spyder-kernels 3.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 904 kB
  • sloc: python: 6,035; sh: 8; makefile: 4
file content (12 lines) | stat: -rwxr-xr-x 278 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

set -e

PYS=$(py3versions -s)

cp -a spyder_kernels "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $PYS; do
    echo "Testing with $py:"
    $py -m pytest --ignore spyder_kernels/customize/tests/test_umr.py -k "not test_dask_multiprocessing" spyder_kernels
done