Move endpoint test fixtures to a non-conftest file
This commit is contained in:
parent
2c35383724
commit
7b386e9d63
4 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
|||
import datetime
|
||||
|
||||
import pytest
|
||||
|
||||
from data import model
|
||||
from endpoints.api import api
|
||||
from endpoints.api.superuser import SuperUserRepositoryBuildLogs, SuperUserRepositoryBuildResource
|
||||
from endpoints.api.superuser import SuperUserRepositoryBuildStatus
|
||||
from endpoints.test.fixtures import app, appconfig, database_uri, init_db_path, sqlitedb_file
|
||||
|
||||
|
||||
def client_with_identity(auth_username, client):
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import pytest
|
||||
|
||||
from endpoints.oauthlogin import _conduct_oauth_login
|
||||
from endpoints.api.test.conftest import app, appconfig, database_uri, init_db_path, sqlitedb_file
|
||||
from endpoints.test.fixtures import app, appconfig, database_uri, init_db_path, sqlitedb_file
|
||||
|
||||
from oauth.services.github import GithubOAuthService
|
||||
|
||||
|
|
Reference in a new issue