tests: alphabetize and group Python imports & add check

- De-duplicates, groups, and sorts imports based on the provided `isort` settings.
This commit is contained in:
Dan Fandrich 2026-04-03 11:52:44 -07:00
parent 4c1b6f5494
commit 98e470b3a8
44 changed files with 110 additions and 134 deletions

View file

@ -24,17 +24,16 @@
#
import logging
import os
import sys
import platform
import sys
from typing import Generator, Union
import pytest
from testenv.env import EnvConfig
sys.path.append(os.path.join(os.path.dirname(__file__), '.'))
from testenv import Env, Nghttpx, Httpd, NghttpxQuic, NghttpxFwd, Sshd
from testenv import Env, Httpd, Nghttpx, NghttpxFwd, NghttpxQuic, Sshd
log = logging.getLogger(__name__)