##// END OF EJS Templates
Try to fix async tests....
Matthias Bussonnier -
Show More
@@ -37,7 +37,7 b' install:'
37 - pip install -e file://$PWD#egg=ipython[test] --upgrade
37 - pip install -e file://$PWD#egg=ipython[test] --upgrade
38 - pip install trio curio --upgrade --upgrade-strategy eager
38 - pip install trio curio --upgrade --upgrade-strategy eager
39 - pip install 'pytest' 'matplotlib !=3.2.0'
39 - pip install 'pytest' 'matplotlib !=3.2.0'
40 - pip install codecov check-manifest pytest-cov --upgrade anyio pytest-asyncio
40 - pip install codecov check-manifest pytest-cov --upgrade anyio pytest-trio
41
41
42
42
43 script:
43 script:
@@ -35,6 +35,8 b' from IPython.utils.tempdir import (TemporaryDirectory,'
35 from IPython.utils.process import find_cmd
35 from IPython.utils.process import find_cmd
36 from .test_debugger import PdbTestInput
36 from .test_debugger import PdbTestInput
37
37
38 import pytest
39
38
40
39 @magic.magics_class
41 @magic.magics_class
40 class DummyMagics(magic.Magics): pass
42 class DummyMagics(magic.Magics): pass
@@ -954,7 +956,6 b' async def test_script_bg_out():'
954 nt.assert_equal((await ip.user_ns["output"].read()), b"hi\n")
956 nt.assert_equal((await ip.user_ns["output"].read()), b"hi\n")
955 ip.user_ns['output'].close()
957 ip.user_ns['output'].close()
956
958
957
958 @dec.skip_win32
959 @dec.skip_win32
959 async def test_script_bg_err():
960 async def test_script_bg_err():
960 ip = get_ipython()
961 ip = get_ipython()
General Comments 0
You need to be logged in to leave comments. Login now