mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Some checks failed
Code scanning - action / CodeQL-Build (push) Has been cancelled
* pydevd: Fix up prefix of attach shared library for Windows (#1939) Follow-up to #1917, which changed the prefix for Windows. The crux of that contribution was about enabling attaching on Sillicon Mac (in fact, it came from my colleagues at Zed Industries). This however broke .dll lookup per https://github.com/zed-industries/zed/pull/35640#issuecomment-3155624377 * Check if `os.__file__` is available before using it (#1944) * check if os.file is available before using it * use threading.__file__ als last fallback * update testing for python 3.14 (#1955) * update testing for python 3.14 * Allow python 3.14 in attach code * move 3.14 to its own job outside of matrix * try 3.14.0-rc.2 * allowUnstable * use 3.14.0-rc.2 but use 3.14 in tests * include py.typed in the distributed package (#1960) * Add gcc flags (#1947) * Add pyrx-admins as code owners (#1976) * Add pyrx-admins as code owners * Combine CODEOWNERS entries into a single line --------- Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Co-authored-by: timrid <6593626+timrid@users.noreply.github.com> Co-authored-by: Bill Schnurr <bschnurr@hotmail.com> Co-authored-by: lev-blit <47675736+lev-blit@users.noreply.github.com> Co-authored-by: Karthik Nadig <kanadig@microsoft.com>
14 lines
571 B
INI
14 lines
571 B
INI
[tox]
|
|
envlist = py{38,39,310,311,312,313,314}{,-cov}
|
|
|
|
[testenv]
|
|
deps = -rtests/requirements.txt
|
|
passenv = DEBUGPY_LOG_DIR,DEBUGPY_TESTS_FULL
|
|
setenv =
|
|
DEBUGPY_TEST=1
|
|
commands_pre = python build_attach_binaries.py
|
|
commands =
|
|
py{38,39}-!cov: python -m pytest {posargs}
|
|
py{38,39}-cov: python -m pytest --cov --cov-append --cov-config=.coveragerc {posargs}
|
|
py{310,311,312,313,314}-!cov: python -Xfrozen_modules=off -m pytest {posargs}
|
|
py{310,311,312,313,314}-cov: python -Xfrozen_modules=off -m pytest --cov --cov-append --cov-config=.coveragerc {posargs}
|