2021-08-24 18:21:14 +00:00
|
|
|
all:
|
2021-08-24 23:28:13 +00:00
|
|
|
if ! test -d venv; then python3 -m venv venv; fi;
|
2021-08-24 18:21:14 +00:00
|
|
|
. ./venv/bin/activate
|
|
|
|
pip install -r requirements.txt
|
|
|
|
rm -f ../../core/pyspec/eth2spec/test/phase0/random/test_random.py
|
|
|
|
rm -f ../../core/pyspec/eth2spec/test/altair/random/test_random.py
|
|
|
|
python generate.py phase0 > ../../core/pyspec/eth2spec/test/phase0/random/test_random.py
|
|
|
|
python generate.py altair > ../../core/pyspec/eth2spec/test/altair/random/test_random.py
|