summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gilman <davidgilman1@gmail.com>2021-02-11 07:59:33 -0500
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-16 07:53:15 +0100
commit4e74c228615f6ac58f7bd06b4a96422ede9ef7fe (patch)
treeb3c5ddeb6666ee2a8bd8863102aa119a6180e804
parent1af517b1281f15a14effbb207b4540fb316067b9 (diff)
downloadpylint-git-4e74c228615f6ac58f7bd06b4a96422ede9ef7fe.tar.gz
Disable TestNoSix
At this point there are still a handful of packages that are pulling in six so it is not easy to get a six-free testing environment. Maybe in a few months or a year the community will start its detachment from six and this can come back in.
-rw-r--r--tests/checkers/unittest_base.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/checkers/unittest_base.py b/tests/checkers/unittest_base.py
index bd9db41f3..796731842 100644
--- a/tests/checkers/unittest_base.py
+++ b/tests/checkers/unittest_base.py
@@ -637,9 +637,7 @@ Basic checker Messages
class TestNoSix(unittest.TestCase):
- @unittest.skipUnless(
- "TOX_ENV_NAME" in os.environ, "only run six checks in clean virtualenv"
- )
+ @unittest.skip("too many dependencies need six :(")
def test_no_six(self):
try:
has_six = True