From c1d94dad8d12298b048890c2dea21cddd343f1aa Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Thu, 12 Sep 2024 00:48:50 +0200 Subject: [PATCH] test: Remove coverage from test in GH Actions --- Makefile | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 19699629336..9574593edb9 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,7 @@ install: pip install -e .[dev] test: pytest policyengine_us/tests/ --maxfail=0 - coverage run -a --branch -m policyengine_core.scripts.policyengine_command test policyengine_us/tests/policy/ -c policyengine_us - coverage xml -i + python -a --branch -m policyengine_core.scripts.policyengine_command test policyengine_us/tests/policy/ -c policyengine_us documentation: jb clean docs jb build docs diff --git a/setup.py b/setup.py index 775a9ebb82e..77aa1feabb2 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ ], install_requires=[ "policyengine-core>=3.6.5", - "policyengine-us-data @ git+https://git@github.com/PolicyEngine/policyengine-us-data.git", + "policyengine-us-data>=1.0.1", "microdf-python", "tqdm", ],