(self)
| 305 | ) |
| 306 | |
| 307 | def clean(self): |
| 308 | with chdir(BOOST_ROOT): |
| 309 | spawn( |
| 310 | [ |
| 311 | './b2', |
| 312 | '--user-config={}'.format(self.get_boost_config_path()), |
| 313 | '--with-python', |
| 314 | 'python={}'.format(get_python_version()), |
| 315 | '--build-dir={}'.format(self.get_boost_python_builddir()), |
| 316 | '--clean', |
| 317 | ] |
| 318 | ) |
| 319 | |
| 320 | def build(self): |
| 321 | if os.path.exists(self.get_boost_python_builddir()): |
no test coverage detected