diff --git a/PkgInfo/test.py b/PkgInfo/test.py index 40fb044..4fa7363 100644 --- a/PkgInfo/test.py +++ b/PkgInfo/test.py @@ -1,5 +1,5 @@ ### -# Copyright (c) 2014-2016, James Lu +# Copyright (c) 2014-2017, James Lu # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -29,6 +29,7 @@ ### from supybot.test import * +import unittest class PkgInfoTestCase(PluginTestCase): plugins = ('PkgInfo',) @@ -50,14 +51,15 @@ class PkgInfoTestCase(PluginTestCase): self.assertRegexp('vlist debian bash', 'Found [1-9][0-9]* ' 'results: (.*?\(.*?\))+') + @unittest.skip("Remote server is too unreliable (2017-02-23)") def testArchLinux(self): self.assertError('archlinux afdsfbjeiog') self.assertNotError('archlinux bash') self.assertRegexp('archlinux pacman --exact', 'Found 1.*?pacman') + @unittest.skip("Remote server is too unreliable (2017-02-23)") def testArchAUR(self): - self.assertError('archaur wjoitgjwotgjv') self.assertRegexp('archaur yaourt', 'Found [1-9][0-9]* results:' '.*?yaourt.*?')