コード例 #1
0
ファイル: test_pep425tags.py プロジェクト: yewang15215/pip
 def test_manylinux1_3(self):
     """
     Test that manylinux1 is disabled on arm6vl
     """
     assert not pep425tags.is_manylinux1_compatible()
コード例 #2
0
ファイル: test_pep425tags.py プロジェクト: yewang15215/pip
 def test_manylinux1_2(self):
     """
     Test that manylinux1 is disabled with incompatible glibc
     """
     assert not pep425tags.is_manylinux1_compatible()
コード例 #3
0
ファイル: test_pep425tags.py プロジェクト: yewang15215/pip
 def test_manylinux1_compatible_on_linux_i686(self):
     """
     Test that manylinux1 is enabled on linux_i686
     """
     assert pep425tags.is_manylinux1_compatible()
コード例 #4
0
ファイル: test_pep425tags.py プロジェクト: DanishKhakwani/pip
 def test_manylinux1_3(self):
     """
     Test that manylinux1 is disabled on arm6vl
     """
     assert not pep425tags.is_manylinux1_compatible()
コード例 #5
0
ファイル: test_pep425tags.py プロジェクト: DanishKhakwani/pip
 def test_manylinux1_2(self):
     """
     Test that manylinux1 is disabled with incompatible glibc
     """
     assert not pep425tags.is_manylinux1_compatible()
コード例 #6
0
ファイル: test_pep425tags.py プロジェクト: DanishKhakwani/pip
 def test_manylinux1_compatible_on_linux_i686(self):
     """
     Test that manylinux1 is enabled on linux_i686
     """
     assert pep425tags.is_manylinux1_compatible()