From 27603f9780c6ff831a13bf3004ee0a7b08864dce Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 19 Jul 2020 13:57:52 +0200 Subject: [PATCH] Reenable a test for nested imports --- test/test_inference/test_imports.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_inference/test_imports.py b/test/test_inference/test_imports.py index 6cc7b051..32acf093 100644 --- a/test/test_inference/test_imports.py +++ b/test/test_inference/test_imports.py @@ -250,8 +250,7 @@ def test_named_import(Script): assert len(Script(s, path='/').infer(1, 10)) == 1 -@pytest.mark.skipif('True', reason='The nested import stuff is still very messy.') -def test_goto_following_on_imports(Script): +def test_nested_import(Script): s = "import multiprocessing.dummy; multiprocessing.dummy" g = Script(s).goto() assert len(g) == 1