(tmpdir)
| 292 | |
| 293 | |
| 294 | def test_script_encoding_default(tmpdir): |
| 295 | # type: (Tempdir) -> None |
| 296 | |
| 297 | script = tmpdir.join("incorrect-encoding-comment.py") |
| 298 | with open(script, "w") as fp: |
| 299 | fp.write( |
| 300 | dedent( |
| 301 | """ |
| 302 | # Sigma: ∑ |
| 303 | """ |
| 304 | ) |
| 305 | ) |
| 306 | assert ScriptMetadataApplication( |
| 307 | scripts=(), |
| 308 | requirement_configuration=RequirementConfiguration(), |
| 309 | target_configuration=TargetConfiguration(), |
| 310 | ) |
nothing calls this directly
no test coverage detected
searching dependent graphs…