Skip to content

Commit

Permalink
[3.12] gh-108303: Create Lib/test/test_dataclasses/ directory (GH-108978
Browse files Browse the repository at this point in the history
) (#109674)

* gh-108303: Create Lib/test/test_dataclasses/ directory (GH-108978)

Move test_dataclasses.py and its "dataclass_*.py" modules into the
new Lib/test/test_dataclasses/ subdirectory.
(cherry picked from commit 14d6e19)

Co-authored-by: Victor Stinner <[email protected]>

* Fix Lint job: update Lib/test/.ruff.toml

---------

Co-authored-by: Victor Stinner <[email protected]>
  • Loading branch information
miss-islington and vstinner authored Oct 2, 2023
1 parent b153cab commit 9bceb8a
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Lib/test/.ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extend-exclude = [
"test_capi/test_unicode.py",
"test_ctypes/test_arrays.py",
"test_ctypes/test_functions.py",
"test_dataclasses.py",
"test_dataclasses/__init__.py",
"test_descr.py",
"test_enum.py",
"test_functools.py",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3684,10 +3684,10 @@ class C:
self.assertEqual(C(10).x, 10)

def test_classvar_module_level_import(self):
from test import dataclass_module_1
from test import dataclass_module_1_str
from test import dataclass_module_2
from test import dataclass_module_2_str
from test.test_dataclasses import dataclass_module_1
from test.test_dataclasses import dataclass_module_1_str
from test.test_dataclasses import dataclass_module_2
from test.test_dataclasses import dataclass_module_2_str

for m in (dataclass_module_1, dataclass_module_1_str,
dataclass_module_2, dataclass_module_2_str,
Expand Down Expand Up @@ -3725,7 +3725,7 @@ def test_classvar_module_level_import(self):
self.assertNotIn('not_iv4', c.__dict__)

def test_text_annotations(self):
from test import dataclass_textanno
from test.test_dataclasses import dataclass_textanno

self.assertEqual(
get_type_hints(dataclass_textanno.Bar),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -2134,6 +2134,7 @@ TESTSUBDIRS= idlelib/idle_test \
test/test_capi \
test/test_cppext \
test/test_ctypes \
test/test_dataclasses \
test/test_email \
test/test_email/data \
test/test_import \
Expand Down

0 comments on commit 9bceb8a

Please sign in to comment.