(self)
| 1060 | not docstring) |
| 1061 | |
| 1062 | def test_hardlink(self): |
| 1063 | # Test deduplication on all combinations |
| 1064 | for code, docstring, assertion in self.iter_codes(): |
| 1065 | with self.subTest(docstring=docstring, assertion=assertion): |
| 1066 | with self.temporary_directory(): |
| 1067 | script = self.make_script(code) |
| 1068 | self.compile_dir() |
| 1069 | self.check_hardlinks(script, docstring, assertion) |
| 1070 | |
| 1071 | def test_only_two_levels(self): |
| 1072 | # Don't build the 3 optimization levels, but only 2 |
nothing calls this directly
no test coverage detected