Ok, lets at least pass tests :/

This commit is contained in:
Carl Beekhuizen 2019-05-16 12:51:36 +02:00
parent 3e085947b7
commit 49d708e44b
No known key found for this signature in database
GPG Key ID: D05CA176D0020646
1 changed files with 3 additions and 1 deletions

View File

@ -47,7 +47,9 @@ test_phase1: $(PY_SPEC_ALL_TARGETS)
cd $(PY_SPEC_DIR); . venv/bin/activate; python -m pytest tests/phase1
citest: $(PY_SPEC_ALL_TARGETS)
cd $(PY_SPEC_DIR); mkdir -p test-reports/eth2spec; . venv/bin/activate; python -m pytest --junitxml=test-reports/eth2spec/test_results.xml .
cd $(PY_SPEC_DIR); mkdir -p test-reports/eth2spec; . venv/bin/activate; \
python -m pytest --junitxml=test-reports/eth2spec/test_results_phase0.xml tests/phase0; \
python -m pytest --junitxml=test-reports/eth2spec/test_results_phase0.xml tests/phase1
install_lint:
cd $(PY_SPEC_DIR); python3 -m venv venv; . venv/bin/activate; pip3 install flake8==3.5.0