File: runtests

package info (click to toggle)
python-pycm 4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,952 kB
  • sloc: python: 5,029; sh: 8; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 251 bytes parent folder | download
1
2
3
4
5
6
7
8
#!/bin/bash
set -e

# Ignore tests because an issue with pandas with Py3.12
for py in $(py3versions --supported 3> /dev/null)
do
        $py -m pytest -v Test -k 'not function_test and not plot_test and not verified_test and not plot_error_test'
done