try only disabling PRAGMA synchronous = OFF

This commit is contained in:
Andrew Ekstedt 2018-03-30 13:17:47 -07:00
parent 8722315f35
commit 48655ce39d
2 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,6 @@ python:
- "pypy3"
install: pip install -e .
before_script: pokedex load -S && pokedex reindex
before_script: pokedex setup -v
script: py.test
sudo: false

View File

@ -156,7 +156,7 @@ def load(session, tables=[], directory=None, drop_tables=False, verbose=False, s
# SQLite speed tweaks
if not safe and engine.dialect.name == 'sqlite':
session.execute("PRAGMA synchronous=OFF")
#session.execute("PRAGMA synchronous=OFF")
session.execute("PRAGMA journal_mode=OFF")
# Drop all tables if requested