mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
11 lines
228 B
Text
11 lines
228 B
Text
![]() |
#!/usr/bin/env xonsh
|
||
|
$RAISE_SUBPROC_ERROR = True
|
||
|
|
||
|
run_separately = [
|
||
|
'tests/test_ptk_highlight.py',
|
||
|
]
|
||
|
|
||
|
![pytest @($ARGS[1:]) --ignore @(run_separately)]
|
||
|
for fname in run_separately:
|
||
|
![pytest @($ARGS[1:]) @(fname)]
|