From 3abe9c3a1dcdb383aef1b2fedb6813c6386a51c7 Mon Sep 17 00:00:00 2001 From: aditya pandey Date: Sat, 8 Nov 2025 23:07:03 +0530 Subject: [PATCH 1/2] add noxfile.py for nox support --- .github/noxfile.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/noxfile.py diff --git a/.github/noxfile.py b/.github/noxfile.py new file mode 100644 index 0000000..375f8c3 --- /dev/null +++ b/.github/noxfile.py @@ -0,0 +1,6 @@ +import nox + +@nox.session +def tests(session): + session.install("pytest") + session.run("pytest") From 8a095c59bbb24f0c068eb3e88ce0f95afff337f3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 8 Nov 2025 18:34:42 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .github/noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/noxfile.py b/.github/noxfile.py index 375f8c3..a3b9827 100644 --- a/.github/noxfile.py +++ b/.github/noxfile.py @@ -1,5 +1,6 @@ import nox + @nox.session def tests(session): session.install("pytest")