Skip to content

Commit 1ce5266

Browse files
committed
updates noxfile to enable additional testing
1 parent 5e7a172 commit 1ce5266

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

scripts/microgenerator/noxfile.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
from functools import wraps
1818
import pathlib
19-
import os
2019
import nox
2120
import time
2221

@@ -26,7 +25,7 @@
2625
BLACK_VERSION = "black==23.7.0"
2726
BLACK_PATHS = (".",)
2827

29-
DEFAULT_PYTHON_VERSION = "3.9"
28+
DEFAULT_PYTHON_VERSION = "3.13"
3029
UNIT_TEST_PYTHON_VERSIONS = ["3.9", "3.11", "3.12", "3.13"]
3130
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
3231

@@ -190,9 +189,8 @@ def lint(session):
190189
session.install("flake8", BLACK_VERSION)
191190
session.install("-e", ".")
192191
session.run("python", "-m", "pip", "freeze")
193-
session.run("flake8", os.path.join("scripts"))
192+
session.run("flake8", ".")
194193
session.run("flake8", "tests")
195-
session.run("flake8", "benchmark")
196194
session.run("black", "--check", *BLACK_PATHS)
197195

198196

0 commit comments

Comments
 (0)