-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check functional test directory for correct structure
- Loading branch information
1 parent
e2c1312
commit 29193f5
Showing
7 changed files
with
82 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
"""Test that the directory structure of the functional tests is correct.""" | ||
from pathlib import Path | ||
|
||
from pylint.testutils.functional.find_functional_tests import ( | ||
get_functional_test_files_from_directory, | ||
) | ||
|
||
|
||
def test_directories() -> None: | ||
"""Test that the directory structure of the functional tests is correct.""" | ||
functional_dir = Path(__file__).parent / "functional" | ||
get_functional_test_files_from_directory(functional_dir) |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters