(self)
| 55 | ) |
| 56 | |
| 57 | def test_bad_eq_version_check(self) -> None: |
| 58 | # Act |
| 59 | actual = _run_pytest(""" |
| 60 | [case abc] |
| 61 | s: str |
| 62 | [out version==3.7] |
| 63 | abc |
| 64 | """) |
| 65 | |
| 66 | # Assert |
| 67 | assert ( |
| 68 | "version==3.7 always false since minimum runtime version is (3, 10)" in actual.stdout |
| 69 | ) |
nothing calls this directly
no test coverage detected