blob: c664e882562c2a765a869b0e674fd0df66204055 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@echo off
rem = """-*-Python-*- script
rem -------------------- DOS section --------------------
rem You could set PYTHONPATH or TK environment variables here
python -x "%~f0" %*
goto exit
"""
# -------------------- Python section --------------------
from logilab.common.pytest import run
run()
DosExitLabel = """
:exit
rem """
|