(self)
| 445 | ) |
| 446 | |
| 447 | def test_search_major_3(self): |
| 448 | try: |
| 449 | data = self.run_py(["-3"], allow_fail=True) |
| 450 | except subprocess.CalledProcessError: |
| 451 | raise unittest.SkipTest("requires at least one Python 3.x install") |
| 452 | self.assertEqual("PythonCore", data["env.company"]) |
| 453 | self.assertStartsWith(data["env.tag"], "3.") |
| 454 | |
| 455 | def test_search_major_3_32(self): |
| 456 | try: |
nothing calls this directly
no test coverage detected