File: pytest

package info (click to toggle)
jupyter-client 8.6.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,604 kB
  • sloc: python: 9,025; makefile: 168; sh: 33
file content (15 lines) | stat: -rwxr-xr-x 266 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

cp -a debian/run_tests pyproject.toml jupyter_client tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

export JUPYTER_PLATFORM_DIRS=1
jupyter --paths

for py in $(py3versions -s)
do
    echo "Testing with $py:"
    ./run_tests $py -m pytest -v
done