Switch fixture imports to wildcard in prep for full db test fixes
This commit is contained in:
parent
efcb903e48
commit
7debd44b54
23 changed files with 41 additions and 32 deletions
|
@ -4,7 +4,8 @@ from werkzeug.exceptions import HTTPException
|
|||
|
||||
from data import model
|
||||
from endpoints.appr import require_app_repo_read
|
||||
from test.fixtures import app, appconfig, database_uri, init_db_path, sqlitedb_file
|
||||
|
||||
from test.fixtures import *
|
||||
|
||||
def test_require_app_repo_read(app):
|
||||
called = [False]
|
||||
|
|
|
@ -5,8 +5,8 @@ import pytest
|
|||
|
||||
from data import model
|
||||
from endpoints.appr.registry import appr_bp
|
||||
from test.fixtures import app, appconfig, database_uri, init_db_path, sqlitedb_file
|
||||
|
||||
from test.fixtures import *
|
||||
|
||||
@pytest.mark.parametrize('login_data, expected_code', [
|
||||
({
|
||||
|
|
Reference in a new issue