File: testsuite

package info (click to toggle)
scikit-build 0.18.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,792 kB
  • sloc: python: 5,258; cpp: 284; makefile: 171; f90: 12; sh: 7
file content (14 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e -u -x

cp -r tests "$AUTOPKGTEST_TMP"
# Add pyproject.toml to add the filters warning
cp pyproject.toml "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"


for py in $(py3versions -s); do
    $py -m pytest -W ignore::DeprecationWarning -k 'not test_hello_sdist and not test_hello_sdist_with_base and not test_sdist_with_symlinks and not test_manifest_in_sdist and not test_generator_cleanup and not test_fortran and not test_pep518_findpython and not test_pep518 and not test_dual_pep518 and not test_hello_develop and not test_install_command and not test_help_commands and not test_test_command and not test_source_distribution and not test_wheel' --ignore=tests/test_distribution.py
done