From 2b61e906e708cc89248153b2e60e288976d629da Mon Sep 17 00:00:00 2001 From: Andreas Noack Date: Tue, 5 Nov 2024 17:13:18 +0100 Subject: [PATCH] Use a "mirror" for the test data --- test/runtests.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index d345672a..11f6b0bb 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2075,7 +2075,8 @@ end end @testset "NIST - Filip. Issue 558" begin - fn = Downloads.download("https://www.itl.nist.gov/div898/strd/lls/data/LINKS/DATA/Filip.dat") + # Since "https://www.itl.nist.gov/div898/strd/lls/data/LINKS/DATA/Filip.dat" seems to block download, we'll use a "mirror" + fn = Downloads.download("https://gist.githubusercontent.com/andreasnoack/9dadfb922fc45ca52bc7b2659b7c5b67/raw/f1dcdd2179b606ecbb7e23316da1ede971e7ffe8/Filip.dat") filip_estimates_df = CSV.read(fn, DataFrame; skipto = 31, limit = 11, header = ["parameter", "estimate", "se"], delim = " ", ignorerepeated = true) filip_data_df = CSV.read(fn, DataFrame; skipto = 61, header = ["y", "x"], delim = " ", ignorerepeated = true) X = [filip_data_df.x[i]^j for i in 1:length(filip_data_df.x), j in 0:10]