diff --git a/tests/test_all_examples.py b/tests/test_all_examples.py index 5a5a550..602f78a 100644 --- a/tests/test_all_examples.py +++ b/tests/test_all_examples.py @@ -1,4 +1,3 @@ -# pylint: disable=invalid-name """Run all the scripts in the examples directory.""" import importlib @@ -12,6 +11,7 @@ examples = list(pathlib.Path("miepython/examples").glob("*.py")) ids = [example.as_posix() for example in examples] + @pytest.mark.parametrize("path", examples, ids=ids) def test_example_runs(path): """Test all examples."""