##// END OF EJS Templates
Move most of Windows test runners to GitHub Actions...
Move most of Windows test runners to GitHub Actions Leave only 32-bit jobs on Appveyor, I don't know how to configure actions/setup-python to install 32-bit CPython.

File last commit:

r27078:d71d4265
r27125:4a966fb0
Show More
test_shimmodule.py
14 lines | 302 B | text/x-python | PythonLexer
import pytest
import sys
from IPython.utils.shimmodule import ShimWarning
def test_shim_warning():
sys.modules.pop('IPython.config', None)
with pytest.warns(ShimWarning):
import IPython.config
import traitlets.config
assert IPython.config.Config is traitlets.config.Config