mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-23 19:44:25 +01:00
14 lines
317 B
Python
14 lines
317 B
Python
|
from typing import TYPE_CHECKING
|
||
|
|
||
|
import nox
|
||
|
|
||
|
|
||
|
if TYPE_CHECKING:
|
||
|
from nox.sessions import Session
|
||
|
|
||
|
python_versions = ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
||
|
|
||
|
@nox.session(python=python_versions, reuse_venv=True)
|
||
|
def tests(session: "Session") -> None:
|
||
|
_ = session.run("python", "snippets/2_tricky_strings.py")
|