##// END OF EJS Templates
Implement understanding on __tracebackhide__...
Implement understanding on __tracebackhide__ __tracebackhide__ is an attribute that when set to a true value mean the frame need to be skipped/hidden. Implement this in both ultratb and un ipdb so that by default frames are hidden, add switches to toggle the behavior. We reimplement do_up/down but skipping hidden frames when enabled. This also uses the special value `_ipython_bottom_` to hide all of the ipython frames. This also add completion to the debugger

File last commit:

r25839:98bb6cc0
r25839:98bb6cc0
Show More
appveyor.yml
31 lines | 765 B | text/x-yaml | YamlLexer
build: false
matrix:
fast_finish: true # immediately finish build once one of the jobs fails.
environment:
matrix:
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "64"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip"
- "%CMD_IN_ENV% pip install nose coverage"
- "%CMD_IN_ENV% pip install .[test]"
- "%CMD_IN_ENV% mkdir results"
- "%CMD_IN_ENV% cd results"
test_script:
- "%CMD_IN_ENV% iptest --coverage xml"