prevent NoAppException when ImportError occurs within imported module

This commit is contained in:
Paul Brown 2016-12-30 15:02:08 -06:00 committed by Markus Unterwaditzer
parent 789715adb9
commit 0832e77b14
3 changed files with 18 additions and 4 deletions

View file

@ -83,6 +83,7 @@ def test_locate_app(test_apps):
pytest.raises(NoAppException, locate_app, "notanpp.py")
pytest.raises(NoAppException, locate_app, "cliapp/app")
pytest.raises(RuntimeError, locate_app, "cliapp.app:notanapp")
pytest.raises(ImportError, locate_app, "cliapp.importerrorapp")
def test_find_default_import_path(test_apps, monkeypatch, tmpdir):