Moved fixtures into conftest.py

This commit is contained in:
Simon Willison 2018-08-12 17:24:11 -07:00
commit fcc38b9ff2
4 changed files with 0 additions and 5 deletions

View file

@ -1,4 +1,3 @@
from .fixtures import fresh_db
from sqlite_utils.db import Index
import collections
import pytest

View file

@ -1,6 +1,3 @@
from .fixtures import fresh_db
import pytest
search_records = [
{"text": "tanuki are tricksters", "country": "Japan", "not_searchable": "foo"},
{"text": "racoons are trash pandas", "country": "USA", "not_searchable": "bar"},

View file

@ -1,4 +1,3 @@
from .fixtures import existing_db, fresh_db
from sqlite_utils.db import Index