File: ide_run.py

package info (click to toggle)
mdp 3.6-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,500 kB
  • sloc: python: 25,503; makefile: 9; sh: 8
file content (11 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
"""
Helper script to run or debug the tests in an IDE as a simple .py file.
"""

import pytest

#args_str = ""
args_str = "-k parallel --maxfail 1 --tb native"
#args_str = "--maxfail 1 --tb native"

pytest.cmdline.main(args_str.split(" "))