We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d64c0e commit f70cac0Copy full SHA for f70cac0
tests/deploy/test_deploy.py
@@ -49,7 +49,7 @@ def test_files_in_remote(dataset):
49
'--not', '--in', public_sibling['name']] + wanted_opts))
50
assert len(shared_files_missing) == 0, f"💥 Files missing in shared remote { public_sibling['name']}: \n{shared_files_missing}"
51
52
- if public_sibling['annex-type'] == 's3' and not public_sibling.get("annex-public",None)=="yes":
+ if public_sibling.get('annex-type') == 's3' and not public_sibling.get("annex-public",None)=="yes":
53
assert len(os.environ.get('AWS_ACCESS_KEY_ID')) > 0, " 🗝️ missing AWS_ACCESS_KEY_ID"
54
assert len(os.environ.get('AWS_SECRET_ACCESS_KEY')) > 0, " 🗝️ missing AWS_SECRET_ACCESS_KEY"
55
0 commit comments