bigchaindb/tests/web/conftest.py
2016-12-15 15:54:15 +01:00

9 lines
159 B
Python

import pytest
@pytest.fixture
def app(request, restore_config):
from bigchaindb.web import server
app = server.create_app(debug=True)
return app