From a2268a432c62e7ecb02cc9729e843514885b2f3a Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Mon, 15 Mar 2021 19:20:36 +0800 Subject: [PATCH] Fix missing --cov-report --- Makefile | 2 +- setup.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 97da705ef..951237808 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ install_test: test: pyspec . venv/bin/activate; cd $(PY_SPEC_DIR); \ - python3 -m pytest -n 4 --disable-bls --cov=eth2spec.phase0.spec --cov=eth2spec.phase1.spec --cov=eth2spec.altair.spec -cov-report="html:$(COV_HTML_OUT)" --cov-branch eth2spec + python3 -m pytest -n 4 --disable-bls --cov=eth2spec.phase0.spec --cov=eth2spec.phase1.spec --cov=eth2spec.altair.spec --cov-report="html:$(COV_HTML_OUT)" --cov-branch eth2spec find_test: pyspec . venv/bin/activate; cd $(PY_SPEC_DIR); \ diff --git a/setup.py b/setup.py index 3bd64869f..3b48143dc 100644 --- a/setup.py +++ b/setup.py @@ -539,7 +539,6 @@ class PySpecCommand(Command): specs/altair/fork.md specs/altair/sync-protocol.md """ - # TODO: add specs/altair/sync-protocol.md back when the GeneralizedIndex helpers are included. else: raise Exception('no markdown files specified, and spec fork "%s" is unknown', self.spec_fork)