-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In addition, set all the dev dependencies need to support tests for each integration. As a part of this change, ruff was unified to the same version across the board, and some helpers were added to the core `Makefile`
- Loading branch information
1 parent
0bb6780
commit d91925a
Showing
88 changed files
with
11,324 additions
and
12,523 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
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,23 +1,25 @@ | ||
[tool.poetry] | ||
name = "argocd" | ||
version = "0.1.81" | ||
version = "0.1.82" | ||
description = "Argo CD integration powered by Ocean" | ||
authors = ["Isaac Coffie <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
port_ocean = {version = "^0.10.4", extras = ["cli"]} | ||
port_ocean = {version = "^0.10.5", extras = ["cli"]} | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
# Uncomment this if you want to debug the ocean core together with your integration | ||
# port_ocean = { path = '../../', develop = true, extras = ['all'] } | ||
pytest = "^7.2" | ||
black = "^24.4.2" | ||
mypy = "^1.3.0" | ||
ruff = "^0.0.278" | ||
pylint = "^2.17.4" | ||
towncrier = "^23.6.0" | ||
pylint = ">=2.17.4,<4.0.0" | ||
pytest = ">=8.2,<9.0" | ||
pytest-asyncio = ">=0.24.0" | ||
pytest-httpx = ">=0.30.0" | ||
pytest-xdist = "^3.6.1" | ||
ruff = "^0.6.3" | ||
towncrier = "^23.6.0" | ||
|
||
[tool.towncrier] | ||
directory = "changelog" | ||
|
@@ -104,3 +106,8 @@ exclude = ''' | |
|\.venv | ||
)/ | ||
''' | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_default_fixture_loop_scope = "function" | ||
addopts = "-vv -n auto ./tests" |
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,12 +1,12 @@ | ||
[tool.poetry] | ||
name = "aws" | ||
version = "0.2.34" | ||
version = "0.2.35" | ||
description = "This integration will map all your resources in all the available accounts to your Port entities" | ||
authors = ["Shalev Avhar <[email protected]>", "Erik Zaadi <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
port_ocean = {version = "^0.10.4", extras = ["cli"]} | ||
port_ocean = {version = "^0.10.5", extras = ["cli"]} | ||
python-dotenv = "^1.0.1" | ||
aioboto3 = "^12.4.0" | ||
boto3-stubs = {version = "1.34.76", extras = ["acm", "apigateway", "appconfig", "athena", "cloudcontrol", "cloudformation", "cloudwatch", "dynamodb", "ec2", "ec2-instance-connect", "ecr", "ecs", "elasticache", "elb", "elbv2", "events", "iam", "lambda", "logs", "organizations", "rds", "route53", "s3", "sagemaker", "secretsmanager", "sns", "sqs", "ssm", "sts"]} | ||
|
@@ -16,13 +16,15 @@ types-aiobotocore = {extras = ["sts"], version = "^2.12.3"} | |
[tool.poetry.group.dev.dependencies] | ||
# Uncomment this if you want to debug the ocean core together with your integration | ||
# port_ocean = { path = '../../', develop = true, extras = ['all'] } | ||
pytest = "^7.2" | ||
black = "^24.3.0" | ||
black = "^24.4.2" | ||
mypy = "^1.3.0" | ||
ruff = "^0.0.278" | ||
pylint = "^2.17.4" | ||
towncrier = "^23.6.0" | ||
pylint = ">=2.17.4,<4.0.0" | ||
pytest = ">=8.2,<9.0" | ||
pytest-asyncio = ">=0.24.0" | ||
pytest-httpx = ">=0.30.0" | ||
pytest-xdist = "^3.6.1" | ||
ruff = "^0.6.3" | ||
towncrier = "^23.6.0" | ||
|
||
[tool.towncrier] | ||
directory = "changelog" | ||
|
@@ -109,3 +111,8 @@ exclude = ''' | |
|\.venv | ||
)/ | ||
''' | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" | ||
asyncio_default_fixture_loop_scope = "function" | ||
addopts = "-vv -n auto ./tests" |
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
Oops, something went wrong.