(self, config)
| 1594 | api=API_COMPAT, env=env, ignore_stderr=True) |
| 1595 | |
| 1596 | def copy_paths_by_env(self, config): |
| 1597 | all_configs = self._get_expected_config() |
| 1598 | paths = all_configs['config']['module_search_paths'] |
| 1599 | paths_str = os.path.pathsep.join(paths) |
| 1600 | config['pythonpath_env'] = paths_str |
| 1601 | env = {'PYTHONPATH': paths_str} |
| 1602 | return env |
| 1603 | |
| 1604 | @unittest.skipIf(MS_WINDOWS, 'See test_init_pybuilddir_win32') |
| 1605 | def test_init_pybuilddir(self): |
no test coverage detected