mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 14:30:30 +03:00
gitlab-ci: install biplist if available, otherwise skip test_parse_ipa
Fedora does not have a biplist package.
This commit is contained in:
parent
6eee83db47
commit
dc7170e709
2 changed files with 16 additions and 2 deletions
|
|
@ -1935,6 +1935,12 @@ class UpdateTest(unittest.TestCase):
|
|||
)
|
||||
|
||||
def test_parse_ipa(self):
|
||||
try:
|
||||
import biplist # Fedora does not have a biplist package
|
||||
|
||||
biplist # silence the linters
|
||||
except ImportError as e:
|
||||
self.skipTest(str(e))
|
||||
ipa_path = os.path.join(
|
||||
os.path.dirname(os.path.abspath(__file__)),
|
||||
'com.fake.IpaApp_1000000000001.ipa',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue