File: pytest

package info (click to toggle)
jupyter-server-terminals 0.5.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 284 kB
  • sloc: python: 752; makefile: 24; sh: 10
file content (15 lines) | stat: -rwxr-xr-x 228 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

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

export JUPYTER_PLATFORM_DIRS=1
jupyter --paths

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