-
Notifications
You must be signed in to change notification settings - Fork 1
/
noxfile.py
45 lines (36 loc) · 1.02 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
"""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
package = "tap-pulumi-cloud"
src_dir = "tap_pulumi_cloud"
tests_dir = "tests"
python_versions = [
"3.13",
"3.12",
"3.11",
"3.10",
"3.9",
]
main_python_version = "3.13"
locations = src_dir, tests_dir, "noxfile.py"
nox.options.sessions = ("tests",)
@session(python=python_versions)
def tests(session: Session) -> None:
"""Execute pytest tests and compute coverage."""
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)