Switch fixture imports to wildcard in prep for full db test fixes

This commit is contained in:
Joseph Schorr 2017-04-24 13:49:29 -04:00
parent efcb903e48
commit 7debd44b54
23 changed files with 41 additions and 32 deletions

View file

@ -3,7 +3,7 @@ import pytest
from auth.oauth import validate_bearer_auth, validate_oauth_token
from auth.validateresult import AuthKind, ValidateResult
from data import model
from test.fixtures import app, appconfig, database_uri, init_db_path, sqlitedb_file
from test.fixtures import *
@pytest.mark.parametrize('header, expected_result', [
('', ValidateResult(AuthKind.oauth, missing=True)),