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 9eee6f3 commit 89888deCopy full SHA for 89888de
tests/conftest.py
@@ -14,7 +14,7 @@ def driver():
14
chrome_options.add_argument('headless')
15
chrome_options.add_argument('window-size=1200x800')
16
try:
17
- b = webdriver.Chrome(chrome_options=chrome_options)
+ b = webdriver.Chrome(options=chrome_options)
18
except WebDriverException as e:
19
pytest.skip(force_text(e))
20
else:
tests/testapp/settings.py
@@ -52,3 +52,4 @@
52
AWS_STORAGE_BUCKET_NAME = 'test-bucket'
53
AWS_S3_REGION_NAME = 'eu-central-1'
54
AWS_S3_SIGNATURE_VERSION = 's3v4'
55
+AWS_DEFAULT_ACL = None
0 commit comments