mirror of
https://github.com/logos-blockchain/logos-blockchain-e2e-tests.git
synced 2026-01-05 06:33:11 +00:00
32 lines
1.0 KiB
Markdown
32 lines
1.0 KiB
Markdown
# logos-blockchain-e2e-tests
|
|
|
|
Logos Blockchain E2E framework used to test various implementations of the Logos Blockchain node.
|
|
|
|
## Setup and contribute
|
|
|
|
```shell
|
|
git clone https://github.com/logos-blockchain/logos-blockchain-e2e-tests.git
|
|
cd logos-blockchain-e2e-tests
|
|
python -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install -r requirements.txt
|
|
mkdir -p kzgrs
|
|
wget https://raw.githubusercontent.com/logos-blockchain/logos-blockchain/refs/heads/master/tests/kzgrs/kzgrs_test_params -O kzgrs/kzgrs_test_params
|
|
pre-commit install
|
|
(optional) Overwrite default vars from src/env_vars.py via env vars or by adding a .env file
|
|
(optional) python download_nltk_resources.py # Used when CHECK_LOG_ERRORS=True
|
|
pytest
|
|
```
|
|
|
|
## License
|
|
|
|
Licensed and distributed under either of
|
|
|
|
- MIT license: [LICENSE-MIT](http://opensource.org/licenses/MIT)
|
|
|
|
or
|
|
|
|
- Apache License, Version 2.0, [LICENSE-APACHE-v2](http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
at your option. These files may not be copied, modified, or distributed except according to those terms.
|