##// END OF EJS Templates
Add option to `%autoreload` to hide errors when reloading code (#14056)...
Add option to `%autoreload` to hide errors when reloading code (#14056) * We have `%autoreload` enabled by default in Spyder and think it's a bit annoying to show its error messages to users because they make little sense to them. These errors are not uncommon when you are working with some code that is slightly different between two git branches. * However, I didn't change the current behavior (i.e. showing errors) because it's been like that for as long as I can remember. We'd simply use the new `--hide-errors` option in our kernel.

File last commit:

r28219:05f6a6e8
r28310:b518e6a5 merge
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:\\Python39"
PYTHON_VERSION: "3.9.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