File: python3-sphinx-gallery

package info (click to toggle)
sphinx-gallery 0.17.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,336 kB
  • sloc: python: 9,958; makefile: 216; lisp: 15; sh: 11; cpp: 9
file content (14 lines) | stat: -rw-r--r-- 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -eu

cp -r sphinx_gallery/tests ${AUTOPKGTEST_TMP}/
cd ${AUTOPKGTEST_TMP}/tests

for python in $(py3versions -s); do
    ${python} -m pytest -p no:warnings -k "not test_embed_code_links_get_data \
        and not test_dummy_image \
        and not test_split_code_and_text_blocks \
        and not test_bug_cases_of_notebook_syntax \
        and not test_jupyter_notebook \
        and not test_file_is_generated"
done