Procházet zdrojové kódy

Disable test on Windows

Ask Solem před 11 roky
rodič
revize
7a420ffee2
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      celery/tests/utils/test_datastructures.py

+ 2 - 0
celery/tests/utils/test_datastructures.py

@@ -96,6 +96,8 @@ class test_ConfigurationView(Case):
         self.assertIn('default_key', repr(self.view))
 
     def test_iter(self):
+        if sys.platform == 'win32':
+            raise SkipTest('Not working on Windows')
         expected = {'changed_key': 1,
                     'default_key': 1,
                     'both': 2}