mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-13 03:12:24 +03:00
d2466ee822
* 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
11 lines
187 B
Bash
Executable File
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
|