summaryrefslogtreecommitdiff
path: root/tests/test_functional.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2020-03-11 14:21:28 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2020-03-11 14:21:28 +0100
commit87681f72477d7bc19e2443203f0e88c10d1ef804 (patch)
treee208b31e7d1944db08a1298eb78362f45f4a18c6 /tests/test_functional.py
parent762e1a13601f5e205a6be1c8b5450f2c519b87de (diff)
downloadpylint-git-87681f72477d7bc19e2443203f0e88c10d1ef804.tar.gz
Add exclude_platforms to functional tests and use it for non_ascii_name check
Diffstat (limited to 'tests/test_functional.py')
-rw-r--r--tests/test_functional.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_functional.py b/tests/test_functional.py
index 933c85a83..184934e8b 100644
--- a/tests/test_functional.py
+++ b/tests/test_functional.py
@@ -16,7 +16,6 @@
import csv
import io
import os
-import platform
import sys
import pytest
@@ -70,9 +69,6 @@ def get_tests():
if dirpath.endswith("__pycache__"):
continue
for filename in filenames:
- if filename == "non_ascii_name.py" and os.name == "nt":
- # skip this test on Windows since it involves Unicode
- continue
if filename != "__init__.py" and filename.endswith(".py"):
suite.append(testutils.FunctionalTestFile(dirpath, filename))
return suite