Setups recipe and context.
(self)
| 9 | recipe_name = "reportlab" |
| 10 | |
| 11 | def setUp(self): |
| 12 | """ |
| 13 | Setups recipe and context. |
| 14 | """ |
| 15 | super().setUp() |
| 16 | self.recipe_dir = self.recipe.get_build_dir(self.arch.arch) |
| 17 | ensure_dir(self.recipe_dir) |
| 18 | |
| 19 | def test_prebuild_arch(self): |
| 20 | """ |
nothing calls this directly
no test coverage detected