mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Fix launcher not propagating debuggee exit code. Fix attach-by-PID without explicit --log-dir overriding PTVSD_LOG_DIR (and disabling logging). Improve test logging, with a separate directory for every test. Various test fixes.
15 lines
183 B
Batchfile
15 lines
183 B
Batchfile
@echo off
|
|
|
|
pushd %~dp0
|
|
del /s /q *.pyc
|
|
del /s /q *.pyo
|
|
for /d /r %%i in (__pycache__.*) do rd "%%i"
|
|
popd
|
|
|
|
pushd %~dp0\src
|
|
del /s /q *.pyd
|
|
popd
|
|
|
|
pushd %~dp0\tests
|
|
del /s /q *.pyd
|
|
popd
|