(self)
| 464 | self.assertEndsWith(data["env.tag"], "-32") |
| 465 | |
| 466 | def test_search_major_2(self): |
| 467 | try: |
| 468 | data = self.run_py(["-2"], allow_fail=True) |
| 469 | except subprocess.CalledProcessError: |
| 470 | if not is_installed("2.7"): |
| 471 | raise unittest.SkipTest("requires at least one Python 2.x install") |
| 472 | self.assertEqual("PythonCore", data["env.company"]) |
| 473 | self.assertStartsWith(data["env.tag"], "2.") |
| 474 | |
| 475 | def test_py_default(self): |
| 476 | with self.py_ini(TEST_PY_DEFAULTS): |
nothing calls this directly
no test coverage detected