예제 #1
0
def db():
    config = get_config(['-c', TEST_CONFIG_PATH.as_posix()])
    cb_conf = config['couchbase']

    setup_db(cb_conf)
    yield
    teardown_db(cb_conf)
예제 #2
0
def db():
    test_config = get_config(['-c', TEST_CONFIG_PATH.as_posix()])

    setup_db(test_config['postgres'])
    yield
    teardown_db(test_config['postgres'])
예제 #3
0
파일: conftest.py 프로젝트: vadimber18/ksg
def db():
    setup_db(TEST_CONFIG['postgres'])
    yield
    teardown_db(TEST_CONFIG['postgres'])
예제 #4
0
def db():
    test_config = get_config(TEST_CONFIG_PATH)

    setup_db(test_config['postgres'])
    yield
    teardown_db(test_config['postgres'])
예제 #5
0
def db():
    test_config = get_config()

    setup_db(test_config['postgres'])
    yield
    teardown_db(test_config['postgres'])
예제 #6
0
파일: conftest.py 프로젝트: kuter/aiohello
def db():
    test_config = get_config(["-c", TEST_CONFIG_PATH.as_posix()])

    setup_db(test_config["postgres"])
    yield
    teardown_db(test_config["postgres"])