conftest.py 247 B

123456789101112131415
  1. import sys
  2. sys.path.append('.')
  3. import uuid
  4. import pytest
  5. from lakesuperior.app import create_app
  6. from lakesuperior.config_parser import config
  7. @pytest.fixture
  8. def app():
  9. app = create_app(config['test'], config['logging'])
  10. return app