We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c56a0aa commit dfc3bd3Copy full SHA for dfc3bd3
.gitignore
@@ -18,4 +18,5 @@ _build
18
deploy_key
19
.pypirc
20
secrets.tar
21
+secrets
22
htmlcov
tooling/src/hypothesistooling/__init__.py
@@ -361,8 +361,10 @@ def changed_files_from_master():
361
SECRETS_TAR = SECRETS_BASE + '.tar'
362
ENCRYPTED_SECRETS = SECRETS_TAR + '.enc'
363
364
-DEPLOY_KEY = os.path.join(ROOT, 'deploy_key')
365
-PYPIRC = os.path.join(ROOT, '.pypirc')
+SECRETS = os.path.join(ROOT, 'secrets')
+
366
+DEPLOY_KEY = os.path.join(SECRETS, 'deploy_key')
367
+PYPIRC = os.path.join(SECRETS, '.pypirc')
368
369
370
def decrypt_secrets():
0 commit comments