Skip to content

Commit

Permalink
Increase test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jan 25, 2024
1 parent c0e1d39 commit 6a25ed8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/core/test_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ def test_get_supported_pythons_sdk():
[
(">=3.7,<3.12", ["3.7", "3.8", "3.9", "3.10", "3.11"]),
(">=3.7", ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]),
(">3.7", ["3.8", "3.9", "3.10", "3.11", "3.12"]),
(">3.7,<=3.11", ["3.8", "3.9", "3.10", "3.11"]),
],
)
def test_get_supported_pythons(specifiers: str, expected: list[str]):
Expand Down

0 comments on commit 6a25ed8

Please # to comment.