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

Solution: BigchainDB by default writes logs in the same directory it is run. The `looponfail` feature provided by pytest waits for changes in the current directory, so it is continuously triggered. This patch tells pytest to only watch the `bigchaindb` and `tests` directories.
6 lines
141 B
INI
6 lines
141 B
INI
[pytest]
|
|
testpaths = tests/
|
|
norecursedirs = .* *.egg *.egg-info env* devenv* docs
|
|
addopts = -m tendermint
|
|
looponfailroots = bigchaindb tests
|