コード例 #1
0
 def test_min_numpy(self):
     self.add_requirements('numpy >18', 'python')
     r = configure_feedstock.compute_build_matrix(self.meta)
     print(r)
コード例 #2
0
 def test_py3(self):
     self.add_requirements('python >=3')
     matrix = configure_feedstock.compute_build_matrix(self.meta)
     self.assertEqual(matrix, [(('python', '3.4'),)])
コード例 #3
0
 def test_numpy_no_python(self):
     self.add_requirements('numpy')
     r = configure_feedstock.compute_build_matrix(self.meta)
     print(r)