Skip to content

Commit 330ca7b

Browse files
committed
wip
1 parent 8dd32c4 commit 330ca7b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/pydevd-release-manylinux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [ubuntu-20.04]
19+
os: [ubuntu-latest]
2020
steps:
2121
- uses: actions/checkout@v4
2222

.github/workflows/pydevd-tests-python.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
include:
3434
- name: "ubuntu-pypy3"
3535
python: "pypy3.10"
36-
os: ubuntu-20.04
36+
os: ubuntu-latest
3737
PYDEVD_USE_CYTHON: NO
3838
# - name: "macos-py37-cython"
3939
# python: "3.7"
4040
# os: macos-latest
4141
# PYDEVD_USE_CYTHON: YES
4242
- name: "ubuntu-py38-cython-checkbin"
4343
python: "3.8"
44-
os: ubuntu-20.04
44+
os: ubuntu-latest
4545
PYDEVD_USE_CYTHON: YES
4646
- name: "windows-py39-cython"
4747
python: "3.9"
@@ -58,27 +58,27 @@ jobs:
5858
PYDEVD_USE_CYTHON: YES
5959
- name: "ubuntu-py311-cython"
6060
python: "3.11.0"
61-
os: ubuntu-20.04
61+
os: ubuntu-latest
6262
PYDEVD_USE_CYTHON: YES
6363
- name: "ubuntu-py312-cython-checkbin"
6464
python: "3.12.0"
65-
os: ubuntu-20.04
65+
os: ubuntu-latest
6666
PYDEVD_USE_CYTHON: YES
6767
- name: "windows-py312-cython-checkbin"
6868
python: "3.12"
6969
os: windows-latest
7070
PYDEVD_USE_CYTHON: YES
7171
- name: "ubuntu-py313-cython"
7272
python: "3.13"
73-
os: ubuntu-20.04
73+
os: ubuntu-latest
7474
PYDEVD_USE_CYTHON: YES
7575
- name: "windows-py313-cython"
7676
python: "3.13"
7777
os: windows-latest
7878
PYDEVD_USE_CYTHON: YES
7979
- name: "ubuntu-py314-cython"
8080
python: "3.14-dev"
81-
os: ubuntu-20.04
81+
os: ubuntu-latest
8282
PYDEVD_USE_CYTHON: YES
8383
- name: "windows-py314-cython"
8484
python: "3.14-dev"

tests_python/debugger_unittest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,8 +631,8 @@ def run_process(self, args, writer):
631631
msg = "TimeoutError"
632632
try:
633633
writer.write_dump_threads()
634-
except:
635-
msg += " (note: error trying to dump threads on timeout)."
634+
except Exception as e:
635+
msg += " (note: error trying to dump threads on timeout: " + str(e) + ")."
636636
time.sleep(0.2)
637637
self.fail_with_message(msg, stdout, stderr, writer)
638638
except Exception as e:

0 commit comments

Comments
 (0)