mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

* Remove testing for rethinkdb, mongodb, and Py3.5 * Add first tests * Add validation * Add command to start the ABCI Server * Reuse existing MongoDB Connection class * Use DuplicateTransaction * Test only tendermint * Update travis scripts * Fix pep8 errors * Update Makefile
8 lines
114 B
Python
8 lines
114 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def b():
|
|
from bigchaindb.tendermint import BigchainDB
|
|
return BigchainDB()
|