2021-08-24 11:21:14 -07:00
|
|
|
all:
|
2021-08-24 16:28:13 -07:00
|
|
|
if ! test -d venv; then python3 -m venv venv; fi;
|
2021-08-24 11:21:14 -07:00
|
|
|
. ./venv/bin/activate
|
2021-08-25 11:15:27 -07:00
|
|
|
pip3 install -r requirements.txt
|
2021-08-24 11:21:14 -07:00
|
|
|
rm -f ../../core/pyspec/eth2spec/test/phase0/random/test_random.py
|
|
|
|
rm -f ../../core/pyspec/eth2spec/test/altair/random/test_random.py
|
2021-08-25 11:15:27 -07:00
|
|
|
python3 generate.py phase0 > ../../core/pyspec/eth2spec/test/phase0/random/test_random.py
|
|
|
|
python3 generate.py altair > ../../core/pyspec/eth2spec/test/altair/random/test_random.py
|