From 169105eb92b3507beeea617443cc86243b57472c Mon Sep 17 00:00:00 2001 From: Myles Scolnick Date: Thu, 29 Aug 2024 21:39:24 -0400 Subject: [PATCH] fix test --- tests/_cli/test_file_path.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/_cli/test_file_path.py b/tests/_cli/test_file_path.py index 22edb7404ee..0ce7b5a4d91 100644 --- a/tests/_cli/test_file_path.py +++ b/tests/_cli/test_file_path.py @@ -104,9 +104,8 @@ def test_handle_github_issue(mock_urlopen: Any) -> None: assert open(result).read().strip() == "print('Hello, world!')" -@pytest.skip("This test is failing on GitHub Actions") def test_create_tmp_file_from_url() -> None: - url = "https://raw.githubusercontent.com/marimo-team/marimo/main/examples/optimization/regularization_and_sparsity.py" + url = "https://raw.githubusercontent.com/marimo-team/marimo/0.8.5/examples/optimization/regularization_and_sparsity.py" result = _create_tmp_file_from_url(url, temp_dir) # Check if the result is a path to a temporary file