uvloop/tests/test_sourcecode.py

38 lines
1.2 KiB
Python
Raw Normal View History

import os
import subprocess
import sys
import unittest
def find_uvloop_root():
return os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
class TestFlake8(unittest.TestCase):
@unittest.skipIf(sys.version_info < (3, 6, 0),
"flake8 under 3.5 does not recognize f-strings in *.pyx")
def test_flake8(self):
edgepath = find_uvloop_root()
config_path = os.path.join(edgepath, '.flake8')
if not os.path.exists(config_path):
raise RuntimeError('could not locate .flake8 file')
try:
import flake8 # NoQA
except ImportError:
raise unittest.SkipTest('flake8 moudule is missing')
for subdir in ['examples', 'uvloop', 'tests']:
try:
subprocess.run(
[sys.executable, '-m', 'flake8', '--config', config_path],
check=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
cwd=os.path.join(edgepath, subdir))
except subprocess.CalledProcessError as ex:
output = ex.output.decode()
raise AssertionError(
'flake8 validation failed:\n{}'.format(output)) from None