Skip to content

Commit 9961511

Browse files
committed
Add sources & python_versions for sonar
1 parent 5ae96e4 commit 9961511

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

noxconfig.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
from __future__ import annotations
44

55
from dataclasses import dataclass
6+
from exasol.toolbox.nox.plugin import hookimpl
67
from pathlib import Path
78
from typing import Iterable
89

9-
from exasol.toolbox.nox.plugin import hookimpl
10-
1110

1211
class UpdateErrorCodes:
1312
ERROR_CODES: Path = Path(__file__).parent / "error-codes.json"
@@ -33,7 +32,9 @@ class Config:
3332

3433
root: Path = Path(__file__).parent
3534
doc: Path = Path(__file__).parent / "doc"
35+
source: Path = Path("exasol/error")
3636
version_file: Path = Path(__file__).parent / "exasol" / "error" / "version.py"
37+
python_versions = ["3.9", "3.10", "3.11", "3.12", "3.13"]
3738
path_filters: Iterable[str] = ("dist", ".eggs", "venv")
3839
plugins = [UpdateErrorCodes]
3940

0 commit comments

Comments
 (0)