mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
8 lines
176 B
Python
8 lines
176 B
Python
"""Test configuration for py.test."""
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
import flake8
|
|
|
|
flake8.configure_logging(2, "test-logs-%s.%s.log" % sys.version_info[0:2])
|