Skip to content

Commit

Permalink
Use pytest v6.2.5 (#19848)
Browse files Browse the repository at this point in the history
* Use pytest v6.2.5

* bump test definitions
  • Loading branch information
evantahler authored Nov 29, 2022
1 parent 925b113 commit 0870187
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion airbyte-integrations/bases/source-acceptance-test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"inflection~=0.5",
"pdbpp~=0.10",
"pydantic~=1.6",
"pytest~=6.1",
"pytest~=6.2",
"pytest-sugar~=0.9",
"pytest-timeout~=1.4",
"pprintpp~=0.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"airbyte-cdk",
]

TEST_REQUIREMENTS = ["pytest~=6.1"]
TEST_REQUIREMENTS = ["pytest~=6.2"]

setup(
name="destination_{{snakeCase name}}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MAIN_REQUIREMENTS = [
]

TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest~=6.2",
"pytest-mock~=3.6.1",
"source-acceptance-test",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MAIN_REQUIREMENTS = [
]

TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest~=6.2",
"pytest-mock~=3.6.1",
"source-acceptance-test",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MAIN_REQUIREMENTS = [
]

TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest~=6.2",
"source-acceptance-test",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MAIN_REQUIREMENTS = [
]

TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest~=6.2",
"source-acceptance-test",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"airbyte-cdk",
]

TEST_REQUIREMENTS = ["pytest~=6.1"]
TEST_REQUIREMENTS = ["pytest~=6.2"]

setup(
name="destination_scaffold_destination_python",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
]

TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest~=6.2",
"pytest-mock~=3.6.1",
"source-acceptance-test",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
]

TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest~=6.2",
"source-acceptance-test",
]

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/airbyte-python.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class AirbytePythonPlugin implements Plugin<Project> {
pip 'black:22.3.0'
pip 'mypy:0.930'
pip 'isort:5.6.4'
pip 'pytest:6.1.2'
pip 'pytest:6.2.5'
pip 'coverage[toml]:6.3.1'
}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ color_output = true
error_summary = true

[tool.pytest.ini_options]
minversion = "6.0"
minversion = "6.2.5"
addopts ="-r a --capture=no -vv --log-level=DEBUG --color=yes"


0 comments on commit 0870187

Please sign in to comment.