1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

gitlab-ci: disable bandit fail on standard debug keystore password

This commit is contained in:
Hans-Christoph Steiner 2019-06-30 22:48:52 +02:00
parent da0d6393bd
commit 7381a94b47
No known key found for this signature in database
GPG Key ID: 3E177817BA1B9BFA

View File

@ -39,7 +39,7 @@ from . import common
# hard coded defaults for Android ~/.android/debug.keystore files
# https://developers.google.com/android/guides/client-auth
KEYSTORE_FILE = os.path.join(os.getenv('HOME'), '.android', 'debug.keystore')
PASSWORD = 'android'
PASSWORD = 'android' # nosec B105 standard hardcoded password for debug keystores
KEY_ALIAS = 'androiddebugkey'
DISTINGUISHED_NAME = 'CN=Android Debug,O=Android,C=US'