mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
skip tests that won't run on a given CPU architecture
This commit is contained in:
parent
025828932d
commit
0b3fe26524
9 changed files with 34 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
import os
|
||||
import shutil
|
||||
import sys
|
||||
import tempfile
|
||||
import textwrap
|
||||
import unittest
|
||||
|
@ -48,6 +49,7 @@ class BuildTest(unittest.TestCase):
|
|||
os.makedirs(os.path.join(d, 'platform-tools'), exist_ok=True)
|
||||
os.makedirs(os.path.join(d, 'tools'), exist_ok=True)
|
||||
|
||||
@unittest.skipIf(sys.byteorder == 'big', "androguard is not ported to big-endian")
|
||||
def test_get_apk_metadata(self):
|
||||
config = dict()
|
||||
fdroidserver.common.fill_config_defaults(config)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue