Skip to content

Commit 505eee0

Browse files
authored
chore(python): exclude generated tests from project distribution (#1627)
1 parent ea64f20 commit 505eee0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

AwsCryptographicMaterialProviders/runtimes/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ packages = [
88
]
99
# Include generated internaldafny files in package distributions,
1010
# even though they are not included in version control
11-
include = ["**/internaldafny/generated/*.py"]
11+
include = ["src/aws_cryptographic_material_providers/internaldafny/generated/*.py"]
1212
readme = "README.rst"
1313

1414
[tool.poetry.dependencies]

AwsCryptographyPrimitives/runtimes/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ packages = [
88
]
99
# Include generated internaldafny files in package distributions,
1010
# even though they are not included in version control
11-
include = ["**/internaldafny/generated/*.py"]
11+
include = ["src/aws_cryptography_primitives/internaldafny/generated/*.py"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.11.0"

ComAmazonawsDynamodb/runtimes/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ packages = [
88
]
99
# Include generated internaldafny files in package distributions,
1010
# even though they are not included in version control
11-
include = ["**/internaldafny/generated/*.py"]
11+
include = ["src/aws_cryptography_internal_dynamodb/internaldafny/generated/*.py"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.11.0"

ComAmazonawsKms/runtimes/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ packages = [
88
]
99
# Include generated internaldafny files in package distributions,
1010
# even though they are not included in version control
11-
include = ["**/internaldafny/generated/*.py"]
11+
include = ["src/aws_cryptography_internal_kms/internaldafny/generated/*.py"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.11.0"

StandardLibrary/runtimes/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ packages = [
1111
# Include generated internaldafny files in package distributions,
1212
# even though they are not included in version control
1313
include = [
14-
"**/internaldafny/generated/*.py",
14+
"src/smithy_dafny_standard_library/internaldafny/generated/*.py",
1515
]
1616

1717
[tool.poetry.dependencies]

0 commit comments

Comments
 (0)