--content all does not include data file extensions (csv, json, tsv, psv).
()
| 49 | |
| 50 | |
| 51 | def test_all_excludes_data_extensions() -> None: |
| 52 | """--content all does not include data file extensions (csv, json, tsv, psv).""" |
| 53 | all_exts = set(get_extensions(list(ContentType))) |
| 54 | for ext in (".csv", ".tsv", ".psv", ".json", ".json5"): |
| 55 | assert ext not in all_exts, f"{ext} should not be indexed by 'all'" |
nothing calls this directly
no test coverage detected