chia-blockchain/run-py-tests.sh
Mariano Sorgente d2466ee822
Ms.mempool improvements (#1823)
* Remove overflow from list, and remove useless call to handle_eos

* Unindent

* Changes to mempool

* tests

* progress on tests

* Add tests for new mempool

* Fix lint and revert streamable changes

* Improve logging

* Test level warning

* Fix test

* Increase mempool size to 150x
2021-04-13 21:19:12 -07:00

11 lines
187 B
Bash
Executable File

#!/bin/bash
python3 -m venv venv
# shellcheck disable=SC1091
. ./activate
pip3 install ".[dev]"
py.test ./tests/blockchain -s -v
py.test ./tests/core -s -v
py.test ./tests/wallet -s -v