Source code for ewoks.tests.test_projects

import pytest
import importlib


[docs]@pytest.mark.parametrize( "project", ["ewokscore", "ewoksdask", "ewoksppf", "ewoksorange"] ) def test_import(project): importlib.import_module(project)