From 7a68550b2c2d20e0dff51e4fa35409c124a6c0f7 Mon Sep 17 00:00:00 2001 From: Nikhil Woodruff <35577657+nikhilwoodruff@users.noreply.github.com> Date: Fri, 30 May 2025 12:34:35 +0100 Subject: [PATCH] Correct integration test with `gcs://` data format --- .../policyengine-apis-integ/tests/simulation/test_calculate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/policyengine-apis-integ/tests/simulation/test_calculate.py b/projects/policyengine-apis-integ/tests/simulation/test_calculate.py index 0ffe8922..9e4ed6b5 100644 --- a/projects/policyengine-apis-integ/tests/simulation/test_calculate.py +++ b/projects/policyengine-apis-integ/tests/simulation/test_calculate.py @@ -9,7 +9,7 @@ def test_calculation(client: policyengine_simulation_api_client.DefaultApi): "gov.irs.credits.ctc.refundable.fully_refundable": policyengine_simulation_api_client.ParametricReformValue.from_dict({"2023-01-01.2100-12-31":True}) }, subsample=200, # reduce the number of households to speed things up. - data=policyengine_simulation_api_client.Data("gs://policyengine-us-data/cps_2023.h5") # force the service to use google storage (policyengine.py defaults to huggingface) + data=policyengine_simulation_api_client.Data("gcs://policyengine-us-data/cps_2023.h5") # force the service to use google storage (policyengine.py defaults to huggingface) ) response = client.simulate_simulate_economy_comparison_post( options