Skip to content

Commit

Permalink
Skip ngff trafo tests on windows due to issues with requests
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinpape committed May 28, 2022
1 parent 93499dd commit 397b433
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/transformation/test_ngff.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import json
import unittest
from shutil import rmtree
from sys import platform

import numpy as np
import requests
Expand All @@ -17,6 +18,7 @@
}


@unittest.skipIf(platform == "win32", "Download fails on windows")
class TestNgff(unittest.TestCase):
versions = list(NGFF_EXAMPLES.keys())
tmp_folder = "./tmp"
Expand Down

0 comments on commit 397b433

Please sign in to comment.