Skip to content

Commit

Permalink
add comments about missing tests until we bump up minimum Python
Browse files Browse the repository at this point in the history
  • Loading branch information
Technologicat committed Sep 27, 2024
1 parent d8d4a51 commit 23fc4cf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions unpythonic/syntax/tests/test_autocurry.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
from ...llist import cons, nil, ll
from ...collections import frozendict

# TODO: Add test that `autocurry` leaves `type` statements alone once we bump minimum language version to Python 3.12.

def runtests():
with testset("basic usage"):
with autocurry:
Expand Down
2 changes: 2 additions & 0 deletions unpythonic/syntax/tests/test_lazify.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
from sys import stderr
import gc

# TODO: Add test that `lazify` leaves `type` statements alone once we bump minimum language version to Python 3.12.

def runtests():
# first test the low-level tools
with testset("lazyrec (lazify a container literal, recursing into sub-containers)"):
Expand Down
3 changes: 3 additions & 0 deletions unpythonic/syntax/tests/test_scopeanalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
get_lexical_variables,
scoped_transform)

# TODO: Add tests for `match`/`case` once we bump minimum language version to Python 3.10.
# TODO: Add tests for `try`/`except*` once we bump minimum language version to Python 3.11.

def runtests():
# test data
with q as getnames_load:
Expand Down

0 comments on commit 23fc4cf

Please sign in to comment.