From 17a31fcb7d036b158fe8a2385e6f78a861d951f7 Mon Sep 17 00:00:00 2001 From: Jeff Triplett Date: Fri, 9 Aug 2024 14:58:20 -0500 Subject: [PATCH] :fire: Removes code I never meant to commit --- noxfile.py | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/noxfile.py b/noxfile.py index d6c41e3..44232cd 100644 --- a/noxfile.py +++ b/noxfile.py @@ -34,32 +34,3 @@ def tests_drf(session: nox.Session, django: str, drf: str) -> None: session.install(f"django~={django}") session.install(f"djangorestframework~={drf}") session.run("pytest", *session.posargs) - - -@nox.session -@nox.parametrize( - "env", [ - ("3.9", "3.2", None), - ("3.9", "4.2", None), - ("3.9", "3.2", "3.12"), - ("3.9", "4.2", "3.12"), - ] -) -def tests_env(session, env): - python_version, django_version, drf_version = env - # Specify the Python version for the session - session.python = python_version - - # # Install Django - # session.install(f"Django=={django_version}") - - # # Install DRF if specified - # if drf_version: - # session.install(f"djangorestframework=={drf_version}") - - # # Additional dependencies - # # session.install('pytest', 'pytest-django') - - # # Run your tests - # session.run("pytest") - session.run("python", "--version")