-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoxfile.py
49 lines (39 loc) · 1.09 KB
/
noxfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""Nox configuration."""
from __future__ import annotations
import os
import sys
from textwrap import dedent
import nox
try:
from nox_poetry import Session, session
except ImportError:
message = f"""\
Nox failed to import the 'nox-poetry' package.
Please install it using the following command:
{sys.executable} -m pip install nox-poetry"""
raise SystemExit(dedent(message)) from None
python_versions = [
"3.13",
"3.12",
"3.11",
"3.10",
"3.9",
]
nox.options.sessions = ("tests",)
@session(python=python_versions)
def tests(session: Session) -> None:
"""Execute pytest tests."""
deps = ["pytest", "pytest-durations"]
if "GITHUB_ACTIONS" in os.environ:
deps.append("pytest-github-actions-annotate-failures")
session.install(".")
session.install(*deps)
session.run("pytest", *session.posargs)
@session
def mypy(session: Session) -> None:
"""Check types."""
deps = ["mypy", "types-requests"]
args = session.posargs or ("tap_socketdev",)
session.install(".")
session.install(*deps)
session.run("mypy", *args)