Skip to content

Commit

Permalink
Remove the EOL test because we test 3.8 normally
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-kirienko committed Jun 28, 2024
1 parent 8856494 commit 37de400
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,6 @@ def test(session):
session.log(f"OPEN IN WEB BROWSER: file://{report_file}")


@nox.session(python=["3.8"])
def test_eol(session):
"""This is a minimal test session for those old Pythons that have EOLed."""
session.install("-e", ".")
session.install("pytest")
session.run("pytest")


@nox.session(python=PYTHONS)
def pristine(session):
"""
Expand All @@ -82,7 +74,7 @@ def pristine(session):

@nox.session(python=PYTHONS, reuse_venv=True)
def lint(session):
# we run mypy and pylint only on the oldest Python version to ensure maximum compatibility
session.log("Using the newest supported Python: %s", is_latest_python(session))
session.install(
"mypy ~= 1.10",
"types-parsimonious",
Expand Down

0 comments on commit 37de400

Please sign in to comment.