Fix checks

This commit is contained in:
Florian Bruhin 2014-05-05 15:24:04 +02:00
parent ba334a04fc
commit a4d80ddcac
4 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
# pylint: disable=missing-docstring
# pylint: disable=missing-docstring,blacklisted-name,protected-access
"""Tests for qutebrowser.utils.misc."""
@ -140,9 +140,9 @@ class ShellEscapeTests(TestCase):
out = subprocess.check_output(cmd, shell=True).decode('ASCII')
self.assertEqual(out, orig, cmd)
def tearDown(self):
sys.platform = self.platform
if __name__ == '__main__':
unittest.main()

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
# pylint: disable=missing-docstring
# pylint: disable=missing-docstring,protected-access
"""Tests for qutebrowser.utils.url."""

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
# pylint: disable=missing-docstring
# pylint: disable=missing-docstring,invalid-name
"""Tests for the webelement utils."""

View File

@ -52,7 +52,7 @@ options = {
],
},
'exclude': ['appdirs.py'],
'exclude_pep257': [],
'exclude_pep257': ['test_*'],
'other': {
'pylint': ['--output-format=colorized', '--reports=no',
'--rcfile=.pylintrc'],