Skip to content

Commit dea588e

Browse files
committed
TST: address feedback
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 9cb493f commit dea588e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ strict = true
7070
lines_between_types = 1
7171
lines_after_imports = 2
7272
multi_line_output = 5
73-
known_first_party = 'mesonpy'
73+
known_first_party = "mesonpy"
7474

7575

7676
[tool.coverage.html]

tests/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ def tmp_dir_session(tmpdir_factory):
7272
class VEnv(EnvBuilder):
7373
def __init__(self, env_dir):
7474
super().__init__(with_pip=True)
75+
# This warning is mistakenly generated by CPython 3.11.0
76+
# https://github.com/python/cpython/pull/98743
7577
with warnings.catch_warnings():
7678
if sys.version_info[:3] == (3, 11, 0):
7779
warnings.filterwarnings('ignore', 'check_home argument is deprecated and ignored.', DeprecationWarning)

tests/test_pep518.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
from .conftest import cd_package, in_git_repo_context
77

88

9-
pytestmark = pytest.mark.isolated
10-
11-
9+
@pytest.mark.isolated
1210
@pytest.mark.parametrize(
1311
('package'),
1412
[

0 commit comments

Comments
 (0)