##// END OF EJS Templates
fix uncaught `BdbQuit` exceptions on ipdb `exit`...
fix uncaught `BdbQuit` exceptions on ipdb `exit` - `BdbQuit` is now handled in the top-most scope of `InteractiveShell.run_code`. This ensures that `BdbQuit` is correctly handled but can still do its job of breaking out of all user code/loops/further breakpoint requests. Hopefully will work better than previous attempts, which put the `BdqQuit` handling in `Pdb.set_trace` - fixes: - jupyterlab/jupyterlab#12501 - refs: - ipython/ipython#876 - ipython/ipython#1273 - ipython/ipython#4474 - ipython/ipython#5306 - ipython/ipython#9731 - ipython/ipython#9942 - ipython/ipython#9950 - ipython/ipython#10006 - ipython/ipython#12378

File last commit:

r27520:b2f71a87
r27658:fc235985
Show More
appveyor.yml
27 lines | 752 B | text/x-yaml | YamlLexer
build: false
matrix:
fast_finish: true # immediately finish build once one of the jobs fails.
environment:
global:
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
COLUMNS: 120 # Appveyor web viewer window width is 130 chars
matrix:
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "32"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python -m pip install --upgrade setuptools 'pip<22'
- pip install pytest-cov
- pip install -e .[test_extra]
test_script:
- pytest --color=yes -ra --cov --cov-report=xml
on_finish:
- curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
- codecov -e PYTHON_VERSION,PYTHON_ARCH