From 762a1aa50dc6d8fcc78af0517a950e470442c986 Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Sun, 29 Jun 2025 08:56:32 -0400 Subject: [PATCH 1/2] build: specify GH format for run-checks-python the typechecker will automatically do this, for the linter we need to set an environment variable. --- .github/workflows/run-checks-python.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run-checks-python.yml b/.github/workflows/run-checks-python.yml index 3b3ed13e6d95..b21f92706880 100644 --- a/.github/workflows/run-checks-python.yml +++ b/.github/workflows/run-checks-python.yml @@ -34,3 +34,5 @@ jobs: - name: Lint Python run: "cd dev-tools/scripts && make" + env: + RUFF_OUTPUT_FORMAT: github From 77466ad953610ac46d64bb3934e896d0d018c98a Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Sun, 29 Jun 2025 08:58:45 -0400 Subject: [PATCH 2/2] break stuff --- dev-tools/scripts/smokeTestRelease.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py index fbcb0586cd2e..5807244c2d00 100755 --- a/dev-tools/scripts/smokeTestRelease.py +++ b/dev-tools/scripts/smokeTestRelease.py @@ -103,7 +103,7 @@ def getHREFs(urlString: str): return links -def load(urlString: str): +def load(urlStringOther: str): try: content = urllib.request.urlopen(urlString).read().decode("utf-8") except Exception as e: