Skip to content

Commit dfc3bd3

Browse files
committed
Move secrets into directory
1 parent c56a0aa commit dfc3bd3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ _build
1818
deploy_key
1919
.pypirc
2020
secrets.tar
21+
secrets
2122
htmlcov

tooling/src/hypothesistooling/__init__.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,10 @@ def changed_files_from_master():
361361
SECRETS_TAR = SECRETS_BASE + '.tar'
362362
ENCRYPTED_SECRETS = SECRETS_TAR + '.enc'
363363

364-
DEPLOY_KEY = os.path.join(ROOT, 'deploy_key')
365-
PYPIRC = os.path.join(ROOT, '.pypirc')
364+
SECRETS = os.path.join(ROOT, 'secrets')
365+
366+
DEPLOY_KEY = os.path.join(SECRETS, 'deploy_key')
367+
PYPIRC = os.path.join(SECRETS, '.pypirc')
366368

367369

368370
def decrypt_secrets():

0 commit comments

Comments
 (0)