mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 07:52:35 +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
|
@ -5,6 +5,7 @@ import re
|
|||
import shlex
|
||||
import shutil
|
||||
import subprocess
|
||||
import sys
|
||||
import threading
|
||||
import unittest
|
||||
from datetime import datetime, timezone
|
||||
|
@ -38,6 +39,7 @@ common.find_apksigner(conf)
|
|||
USE_APKSIGNER = "apksigner" in conf
|
||||
|
||||
|
||||
@unittest.skipIf(sys.byteorder == 'big', 'androguard is not ported to big-endian')
|
||||
class IntegrationTest(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue