summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-12-04 00:20:51 +0100
committermathieui <mathieui@mathieui.net>2020-12-04 00:20:51 +0100
commit380f0e4e38d5e1be988f60aea76e1172c03e2c56 (patch)
tree5e8d56c166ec100fe5c61be467955b1d16276952 /tests
parent56f44dc47d53f8b387278fc7d13a11a914201df8 (diff)
downloadslixmpp-380f0e4e38d5e1be988f60aea76e1172c03e2c56.tar.gz
slixmpp-380f0e4e38d5e1be988f60aea76e1172c03e2c56.tar.bz2
slixmpp-380f0e4e38d5e1be988f60aea76e1172c03e2c56.tar.xz
slixmpp-380f0e4e38d5e1be988f60aea76e1172c03e2c56.zip
Tests: Remove tabnanny
it is not actively useful and takes 70% of the time of the tests
Diffstat (limited to 'tests')
-rw-r--r--tests/test_overall.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/test_overall.py b/tests/test_overall.py
index 70c34a6a..16ac2f83 100644
--- a/tests/test_overall.py
+++ b/tests/test_overall.py
@@ -2,9 +2,9 @@ import os
import re
import sys
import unittest
-import tabnanny
import compileall
+
class TestOverall(unittest.TestCase):
"""
@@ -18,9 +18,5 @@ class TestOverall(unittest.TestCase):
rx = re.compile('/[.]svn|.*26.*')
self.assertTrue(compileall.compile_dir(src, rx=rx, quiet=True))
- def testTabNanny(self):
- """Testing that indentation is consistent"""
- self.assertFalse(tabnanny.check('..%sslixmpp' % os.sep))
-
suite = unittest.TestLoader().loadTestsFromTestCase(TestOverall)