From 5c5678c335c59f2e4f65cf8e4f5ee8817fb3e897 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Tue, 1 Oct 2024 07:31:51 +0200 Subject: test(etl): Manual run Signed-off-by: Peter Mikus Change-Id: Ibeeb187332e956d1f86267e90dc25a573d3999a1 --- csit.infra.etl/coverage_mrr_rls2410.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'csit.infra.etl/coverage_mrr_rls2410.py') diff --git a/csit.infra.etl/coverage_mrr_rls2410.py b/csit.infra.etl/coverage_mrr_rls2410.py index 9400d8d7fb..c06b306e6f 100644 --- a/csit.infra.etl/coverage_mrr_rls2410.py +++ b/csit.infra.etl/coverage_mrr_rls2410.py @@ -41,9 +41,15 @@ IGNORE_SUFFIX=[ "setup.output.info.json.gz", "teardown.output.info.json.gz" ] +#LAST_MODIFIED_END=utc.localize( +# datetime.strptime( +# f"{datetime.now().year}-{datetime.now().month}-{datetime.now().day}", +# "%Y-%m-%d" +# ) +#) LAST_MODIFIED_END=utc.localize( datetime.strptime( - f"{datetime.now().year}-{datetime.now().month}-{datetime.now().day}", + f"{datetime.now().year}-9-29", "%Y-%m-%d" ) ) @@ -147,8 +153,8 @@ out_sdf = process_json_to_dataframe("mrr", filtered_paths) out_sdf.printSchema() out_sdf = out_sdf \ .withColumn("year", lit(datetime.now().year)) \ - .withColumn("month", lit(datetime.now().month)) \ - .withColumn("day", lit(datetime.now().day)) \ + .withColumn("month", lit("9")) \ + .withColumn("day", lit("29")) \ .repartition(1) try: -- cgit 1.2.3-korg