mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-18 13:10:30 +03:00
run-tests: skip tests that require apksigner when running on Java8
The buildserver VM has not been upgraded yet to bullseye, so it is still on Debian/stretch. The buildserver VM does not need to run `fdroid update`, `fdroid signindex`, etc. so this new apksigner requirement should not affect app builds even though they are stuck on Debian/stretch.
This commit is contained in:
parent
3182b77d18
commit
fe22958476
3 changed files with 15 additions and 0 deletions
|
|
@ -70,6 +70,8 @@ class SignindexTest(unittest.TestCase):
|
|||
signindex.sign_index(str(self.repodir), 'index-v1.json')
|
||||
|
||||
def test_signindex(self):
|
||||
if common.find_apksigner({}) is None: # TODO remove me for buildserver-bullseye
|
||||
self.skipTest('SKIPPING test_signindex, apksigner not installed!')
|
||||
os.mkdir('archive')
|
||||
metadata = Path('metadata')
|
||||
metadata.mkdir()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue