pytest-exasol-extension 0.2.3__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytest_exasol_extension-0.2.3 → pytest_exasol_extension-0.2.4}/PKG-INFO +4 -3
- pytest_exasol_extension-0.2.4/exasol/pytest_extension/version.py +15 -0
- {pytest_exasol_extension-0.2.3 → pytest_exasol_extension-0.2.4}/pyproject.toml +9 -5
- pytest_exasol_extension-0.2.3/exasol/pytest_extension/version.py +0 -11
- {pytest_exasol_extension-0.2.3 → pytest_exasol_extension-0.2.4}/README.md +0 -0
- {pytest_exasol_extension-0.2.3 → pytest_exasol_extension-0.2.4}/exasol/pytest_extension/__init__.py +0 -0
- {pytest_exasol_extension-0.2.3 → pytest_exasol_extension-0.2.4}/exasol/pytest_extension/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pytest-exasol-extension
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Mikhail Beck
|
|
6
6
|
Author-email: mikhail.beck@exasol.com
|
|
@@ -11,9 +11,10 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
13
|
Requires-Dist: exasol-python-extension-common (>=0.10.0,<1)
|
|
14
|
-
Requires-Dist:
|
|
14
|
+
Requires-Dist: exasol-saas-api (>=2.3,<3)
|
|
15
|
+
Requires-Dist: pyexasol (>1,<2)
|
|
15
16
|
Requires-Dist: pytest (>=7,<9)
|
|
16
|
-
Requires-Dist: pytest-exasol-backend (>=
|
|
17
|
+
Requires-Dist: pytest-exasol-backend (>=1.1,<2)
|
|
17
18
|
Description-Content-Type: text/markdown
|
|
18
19
|
|
|
19
20
|
# pytest-exasol-extension Plugin
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
ATTENTION:
|
|
3
|
+
This file is generated by exasol/toolbox/nox/_package_version.py when using:
|
|
4
|
+
* either "poetry run -- nox -s project:fix"
|
|
5
|
+
* or "poetry run -- nox -s version:check -- --fix"
|
|
6
|
+
Do not edit this file manually!
|
|
7
|
+
If you need to change the version, do so in the pyproject.toml, e.g. by using
|
|
8
|
+
`poetry version X.Y.Z`.
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
MAJOR = 0
|
|
12
|
+
MINOR = 2
|
|
13
|
+
PATCH = 4
|
|
14
|
+
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
|
|
15
|
+
__version__ = VERSION
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pytest-exasol-extension"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.4"
|
|
4
4
|
requires-python = ">=3.10,<4.0"
|
|
5
5
|
description = ""
|
|
6
6
|
authors = [
|
|
@@ -14,15 +14,16 @@ packages = [{include = "exasol"}]
|
|
|
14
14
|
|
|
15
15
|
[tool.poetry.dependencies]
|
|
16
16
|
pytest = ">=7,<9"
|
|
17
|
-
pytest-exasol-backend = ">=
|
|
18
|
-
pyexasol = "
|
|
17
|
+
pytest-exasol-backend = ">=1.1, <2"
|
|
18
|
+
pyexasol = ">1,<2"
|
|
19
19
|
exasol-python-extension-common = ">=0.10.0,<1"
|
|
20
|
+
exasol-saas-api = ">=2.3,<3"
|
|
20
21
|
|
|
21
22
|
[tool.poetry.plugins.pytest11]
|
|
22
23
|
ext = "exasol.pytest_extension"
|
|
23
24
|
|
|
24
25
|
[tool.poetry.group.dev.dependencies]
|
|
25
|
-
exasol-toolbox = "^1.
|
|
26
|
+
exasol-toolbox = "^1.6.0"
|
|
26
27
|
exasol-bucketfs = ">=1.0.0"
|
|
27
28
|
click = "^8.1.7"
|
|
28
29
|
|
|
@@ -64,9 +65,12 @@ max-module-lines = 800
|
|
|
64
65
|
module = [
|
|
65
66
|
"test.unit.*",
|
|
66
67
|
"test.integration.*",
|
|
67
|
-
"exasol.pytest_backend.*",
|
|
68
68
|
"pyexasol.*",
|
|
69
69
|
]
|
|
70
70
|
ignore_errors = true
|
|
71
71
|
ignore_missing_imports = true
|
|
72
72
|
|
|
73
|
+
[tool.sonar]
|
|
74
|
+
projectKey = "com.exasol:pytest-extension"
|
|
75
|
+
hostUrl = "https://sonarcloud.io"
|
|
76
|
+
organization = "exasol"
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# ATTENTION:
|
|
2
|
-
# This file is generated by exasol/toolbox/nox/_package_version.py when using:
|
|
3
|
-
# * either "poetry run -- nox -s project:fix"
|
|
4
|
-
# * or "poetry run -- nox version:check -- --fix"
|
|
5
|
-
# Do not edit this file manually!
|
|
6
|
-
# If you need to change the version, do so in the pyproject.toml, e.g. by using `poetry version X.Y.Z`.
|
|
7
|
-
MAJOR = 0
|
|
8
|
-
MINOR = 2
|
|
9
|
-
PATCH = 3
|
|
10
|
-
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
|
|
11
|
-
__version__ = VERSION
|
|
File without changes
|
{pytest_exasol_extension-0.2.3 → pytest_exasol_extension-0.2.4}/exasol/pytest_extension/__init__.py
RENAMED
|
File without changes
|
{pytest_exasol_extension-0.2.3 → pytest_exasol_extension-0.2.4}/exasol/pytest_extension/py.typed
RENAMED
|
File without changes
|