Skip to content

Commit

Permalink
Merge pull request #766 from scap3yvt/765-gdown-does-not-seem-to-be-w…
Browse files Browse the repository at this point in the history
…orking

Fix for sample data download
  • Loading branch information
sarthakpati authored Jan 11, 2024
2 parents 55dbf7a + b3dc6fa commit 6191050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def run(self):
"pyyaml",
"tiffslide",
"matplotlib",
"gdown",
"gdown==4.6.3",
"pytest",
"coverage",
"pytest-cov",
Expand Down
2 changes: 1 addition & 1 deletion testing/test_full.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def test_generic_download_data():
if not os.path.isfile(file):
print("Downloading and extracting sample data")
output = os.path.join(testingDir, "gandlf_unit_test_data.tgz")
gdown.download(urlToDownload, output, quiet=False)
gdown.download(urlToDownload, output, quiet=False, verify = True)
with zipfile.ZipFile(output, "r") as zip_ref:
zip_ref.extractall(testingDir)
os.remove(output)
Expand Down

0 comments on commit 6191050

Please sign in to comment.