-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* #73 handle old style itde exceptions * Apply suggestions from code review Co-authored-by: Torsten Kilias <[email protected]> --------- Co-authored-by: Torsten Kilias <[email protected]>
Showing
7 changed files
with
111 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# 0.3.1 - 2024-11-01 | ||
|
||
## Summary | ||
|
||
Relocked the dependencies and fixed the deficiencies of the 0.3.0 | ||
|
||
## Documentation | ||
|
||
* #51: Corrected docstring of fixture `export_slc_async` | ||
|
||
## Refactorings | ||
|
||
* Relock dependencies | ||
* #73: Added handling the old style ITDE TaskRuntimeError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1 @@ | ||
# Unreleased | ||
|
||
## Documentation | ||
|
||
* #51: Corrected docstring of fixture `export_slc_async` | ||
|
||
## Refactorings | ||
|
||
* Relock dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "pytest-exasol-slc" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "" | ||
authors = ["Mikhail Beck <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -9,9 +9,9 @@ packages = [{include = "exasol"}] | |
[tool.poetry.dependencies] | ||
python = ">=3.10,<4" | ||
pytest = ">=7,<9" | ||
pytest-exasol-backend = ">=0.3.0" | ||
pytest-exasol-extension = ">=0.1.0" | ||
exasol-python-extension-common = ">=0.5.0" | ||
pytest-exasol-backend = ">=0.3.1, <1.0.0" | ||
pytest-exasol-extension = ">=0.2.1, <1.0.0" | ||
exasol-python-extension-common = ">=0.8.0, <1.0.0" | ||
|
||
[tool.poetry.plugins.pytest11] | ||
slc = "exasol.pytest_slc" | ||
|