From 87681f72477d7bc19e2443203f0e88c10d1ef804 Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Wed, 11 Mar 2020 14:21:28 +0100 Subject: Add exclude_platforms to functional tests and use it for non_ascii_name check --- tests/test_functional.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tests/test_functional.py') 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 -- cgit v1.2.1