Description: Skip tests that require network access
 Several entire test classes are disabled in d/rules; here
 we disable tests on an individual basis
Author: Nick Morrott <knowledgejunkie@gmail.com>
Forwarded: not-needed
Last-Update: 2018-12-29
---
--- a/yotta/test/test_ignores.py
+++ b/yotta/test/test_ignores.py
@@ -168,7 +168,7 @@
         c = component.Component(self.test_dir)
         self.assertFalse(c.ignores('comment'))
 
-    @unittest.skipIf(isWindows(), "can't build natively on windows yet")
+    @unittest.skip("No network access")
     def test_build(self):
         stdout = self.runCheckCommand(['--target', systemDefaultTarget(), 'clean'], self.test_dir)
         stdout = self.runCheckCommand(['--target', systemDefaultTarget(), 'build'], self.test_dir)
@@ -176,7 +176,7 @@
         self.assertNotIn('someothertest', stdout)
         self.assertNotIn('sometest', stdout)
 
-    @unittest.skipIf(isWindows(), "can't build natively on windows yet")
+    @unittest.skip("No network access")
     def test_test(self):
         stdout = self.runCheckCommand(['--target', systemDefaultTarget(), 'clean'], self.test_dir)
         stdout = self.runCheckCommand(['--target', systemDefaultTarget(), 'test'], self.test_dir)
