/dbname-hash now optional: turn on with --config hash_urls:1

This commit is contained in:
Simon Willison 2019-03-14 21:24:06 -07:00
commit 1ad3ebf2ed
13 changed files with 79 additions and 51 deletions

View file

@ -73,6 +73,13 @@ def app_client_no_files():
yield client
@pytest.fixture(scope="session")
def app_client_with_hash():
yield from make_app_client(config={
'hash_urls': True
})
@pytest.fixture(scope='session')
def app_client_shorter_time_limit():
yield from make_app_client(20)