def test_min_numpy(self): self.add_requirements('numpy >18', 'python') r = configure_feedstock.compute_build_matrix(self.meta) print(r)
def test_py3(self): self.add_requirements('python >=3') matrix = configure_feedstock.compute_build_matrix(self.meta) self.assertEqual(matrix, [(('python', '3.4'),)])
def test_numpy_no_python(self): self.add_requirements('numpy') r = configure_feedstock.compute_build_matrix(self.meta) print(r)