We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ecfe2 commit 384bfecCopy full SHA for 384bfec
tests/test_importer.py
@@ -34,7 +34,10 @@ def test_run_import_infers_model_from_filename(
34
def test_run_import_no_model_fails(
35
mock_log_error: MagicMock, mock_import_data: MagicMock, tmp_path: Path
36
) -> None:
37
- """Tests that the import fails if no model can be inferred from the filename."""
+ """Test import with no fails.
38
+
39
+ Tests that the import fails if no model can be inferred from the filename.
40
+ """
41
# 1. Setup: A filename starting with a dot will result in an invalid model name.
42
bad_file = tmp_path / ".badfilename"
43
bad_file.touch()
0 commit comments