OSDN Git Service

add seed_to_root_xprv
[bytom/bytom-kit.git] / tests / conftest.py
1 import pytest
2
3 from app import create_app
4
5
6 @pytest.fixture
7 def app():
8     app = create_app(config_name='testing')
9     return app