Skip to content

Commit 65b97db

Browse files
committed
Group pytest* modules
Signed-off-by: Gaëtan Lehmann <[email protected]>
1 parent f82aa92 commit 65b97db

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ ignore = [
6262
]
6363

6464
[tool.ruff.lint.isort.sections]
65-
testing = ["pytest"]
65+
testing = ["pytest*"]
6666
typing = ["typing"]
6767

6868
[tool.ruff.lint.isort]

tests/install/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
from typing import Generator, Sequence, Union
22

33
import pytest
4+
import pytest_dependency # type: ignore
45

56
import logging
67
import os
78
import tempfile
89
import xml.etree.ElementTree as ET
910

10-
import pytest_dependency # type: ignore
11-
1211
from data import ARP_SERVER, ISO_IMAGES, ISO_IMAGES_BASE, ISO_IMAGES_CACHE, TEST_SSH_PUBKEY, TOOLS
1312
from lib import installer, pxe
1413
from lib.commands import local_cmd

0 commit comments

Comments
 (0)