pytest-exasol-extension 0.2.5__tar.gz → 1.0.0__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.5 → pytest_exasol_extension-1.0.0}/PKG-INFO +4 -4
- {pytest_exasol_extension-0.2.5 → pytest_exasol_extension-1.0.0}/exasol/pytest_extension/__init__.py +4 -2
- {pytest_exasol_extension-0.2.5 → pytest_exasol_extension-1.0.0}/exasol/pytest_extension/version.py +4 -4
- {pytest_exasol_extension-0.2.5 → pytest_exasol_extension-1.0.0}/pyproject.toml +15 -17
- {pytest_exasol_extension-0.2.5 → pytest_exasol_extension-1.0.0}/README.md +0 -0
- {pytest_exasol_extension-0.2.5 → pytest_exasol_extension-1.0.0}/exasol/pytest_extension/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pytest-exasol-extension
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Mikhail Beck
|
|
6
6
|
Author-email: mikhail.beck@exasol.com
|
|
@@ -10,9 +10,9 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
-
Requires-Dist: exasol-python-extension-common (>=0.
|
|
13
|
+
Requires-Dist: exasol-python-extension-common (>=0.12.1,<1)
|
|
14
14
|
Requires-Dist: exasol-saas-api (>=2.3,<3)
|
|
15
|
-
Requires-Dist: pyexasol (
|
|
15
|
+
Requires-Dist: pyexasol (>=1.0.0,<3)
|
|
16
16
|
Requires-Dist: pytest (>=7,<9)
|
|
17
17
|
Requires-Dist: pytest-exasol-backend (>=1.1,<2)
|
|
18
18
|
Description-Content-Type: text/markdown
|
{pytest_exasol_extension-0.2.5 → pytest_exasol_extension-1.0.0}/exasol/pytest_extension/__init__.py
RENAMED
|
@@ -2,11 +2,13 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
import random
|
|
4
4
|
import string
|
|
5
|
-
from
|
|
6
|
-
Any,
|
|
5
|
+
from collections.abc import (
|
|
7
6
|
Callable,
|
|
8
7
|
Iterable,
|
|
9
8
|
)
|
|
9
|
+
from typing import (
|
|
10
|
+
Any,
|
|
11
|
+
)
|
|
10
12
|
from urllib.parse import urlparse
|
|
11
13
|
|
|
12
14
|
import pyexasol
|
{pytest_exasol_extension-0.2.5 → pytest_exasol_extension-1.0.0}/exasol/pytest_extension/version.py
RENAMED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"""
|
|
2
2
|
ATTENTION:
|
|
3
3
|
This file is generated by exasol/toolbox/nox/_package_version.py when using:
|
|
4
|
-
* either "poetry run -- nox -s
|
|
4
|
+
* either "poetry run -- nox -s format:fix"
|
|
5
5
|
* or "poetry run -- nox -s version:check -- --fix"
|
|
6
6
|
Do not edit this file manually!
|
|
7
7
|
If you need to change the version, do so in the pyproject.toml, e.g. by using
|
|
8
8
|
`poetry version X.Y.Z`.
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
|
-
MAJOR =
|
|
12
|
-
MINOR =
|
|
13
|
-
PATCH =
|
|
11
|
+
MAJOR = 1
|
|
12
|
+
MINOR = 0
|
|
13
|
+
PATCH = 0
|
|
14
14
|
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
|
|
15
15
|
__version__ = VERSION
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pytest-exasol-extension"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "1.0.0"
|
|
4
4
|
requires-python = ">=3.10,<3.14"
|
|
5
5
|
description = ""
|
|
6
6
|
authors = [
|
|
7
7
|
{name="Mikhail Beck", email="mikhail.beck@exasol.com"}
|
|
8
8
|
]
|
|
9
9
|
readme = "README.md"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"pytest>=7,<9",
|
|
12
|
+
"pytest-exasol-backend>=1.1,<2",
|
|
13
|
+
"pyexasol>=1.0.0,<3",
|
|
14
|
+
"exasol-python-extension-common>=0.12.1,<1",
|
|
15
|
+
"exasol-saas-api>=2.3,<3",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.entry-points.pytest11]
|
|
19
|
+
ext = "exasol.pytest_extension"
|
|
10
20
|
|
|
11
21
|
[tool.poetry]
|
|
12
22
|
requires-poetry = ">=2.1.0"
|
|
13
23
|
packages = [{include = "exasol"}]
|
|
14
24
|
|
|
15
|
-
[tool.poetry.dependencies]
|
|
16
|
-
pytest = ">=7,<9"
|
|
17
|
-
pytest-exasol-backend = ">=1.1, <2"
|
|
18
|
-
pyexasol = ">1,<2"
|
|
19
|
-
exasol-python-extension-common = ">=0.10.0,<1"
|
|
20
|
-
exasol-saas-api = ">=2.3,<3"
|
|
21
|
-
|
|
22
|
-
[tool.poetry.plugins.pytest11]
|
|
23
|
-
ext = "exasol.pytest_extension"
|
|
24
|
-
|
|
25
25
|
[tool.poetry.group.dev.dependencies]
|
|
26
|
-
exasol-toolbox = "^
|
|
26
|
+
exasol-toolbox = "^5.0.0"
|
|
27
27
|
exasol-bucketfs = ">=1.0.0"
|
|
28
28
|
click = "^8.1.7"
|
|
29
29
|
|
|
@@ -40,20 +40,18 @@ source = [
|
|
|
40
40
|
[tool.coverage.report]
|
|
41
41
|
fail_under = 15
|
|
42
42
|
|
|
43
|
-
|
|
44
43
|
[tool.black]
|
|
45
44
|
line-length = 88
|
|
46
45
|
verbose = false
|
|
47
46
|
include = "\\.pyi?$"
|
|
48
47
|
|
|
49
|
-
|
|
50
48
|
[tool.isort]
|
|
51
49
|
profile = "black"
|
|
52
50
|
force_grid_wrap = 2
|
|
53
51
|
|
|
54
|
-
|
|
55
52
|
[tool.pylint.master]
|
|
56
|
-
fail-under =
|
|
53
|
+
fail-under = 5.0
|
|
54
|
+
ignore = []
|
|
57
55
|
output-format = "colorized,json:.lint.json,text:.lint.txt"
|
|
58
56
|
|
|
59
57
|
[tool.pylint.format]
|
|
@@ -74,7 +72,7 @@ unfixable = []
|
|
|
74
72
|
module = [
|
|
75
73
|
"test.unit.*",
|
|
76
74
|
"test.integration.*",
|
|
77
|
-
"pyexasol
|
|
75
|
+
"pyexasol",
|
|
78
76
|
]
|
|
79
77
|
ignore_errors = true
|
|
80
78
|
ignore_missing_imports = true
|
|
File without changes
|
{pytest_exasol_extension-0.2.5 → pytest_exasol_extension-1.0.0}/exasol/pytest_extension/py.typed
RENAMED
|
File without changes
|