Skip to content

Commit 1c16cdd

Browse files
authored
Merge pull request #5752 from swarmauri/bbdx/add-tests-for-new-tigrbl-packages/2026-03-05-2por75
Standardize dev dependency-groups and simplify package smoke tests
2 parents 0ebd0b5 + af1d4d2 commit 1c16cdd

9 files changed

Lines changed: 54 additions & 0 deletions

File tree

pkgs/standards/tigrbl_atoms/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,9 @@ build-backend = "poetry.core.masonry.api"
3434
packages = [
3535
{ include = "tigrbl_atoms" },
3636
]
37+
38+
[dependency-groups]
39+
dev = [
40+
"pytest>=8.0",
41+
"ruff>=0.9",
42+
]

pkgs/standards/tigrbl_base/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,9 @@ build-backend = "poetry.core.masonry.api"
4444
packages = [
4545
{ include = "tigrbl_base" },
4646
]
47+
48+
[dependency-groups]
49+
dev = [
50+
"pytest>=8.0",
51+
"ruff>=0.9",
52+
]

pkgs/standards/tigrbl_canon/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,9 @@ build-backend = "poetry.core.masonry.api"
3636
packages = [
3737
{ include = "tigrbl_canon" },
3838
]
39+
40+
[dependency-groups]
41+
dev = [
42+
"pytest>=8.0",
43+
"ruff>=0.9",
44+
]

pkgs/standards/tigrbl_concrete/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,9 @@ build-backend = "poetry.core.masonry.api"
4040
packages = [
4141
{ include = "tigrbl_concrete" },
4242
]
43+
44+
[dependency-groups]
45+
dev = [
46+
"pytest>=8.0",
47+
"ruff>=0.9",
48+
]

pkgs/standards/tigrbl_core/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,9 @@ build-backend = "poetry.core.masonry.api"
3434
packages = [
3535
{ include = "tigrbl_core" },
3636
]
37+
38+
[dependency-groups]
39+
dev = [
40+
"pytest>=8.0",
41+
"ruff>=0.9",
42+
]

pkgs/standards/tigrbl_kernel/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,9 @@ build-backend = "poetry.core.masonry.api"
3636
packages = [
3737
{ include = "tigrbl_kernel" },
3838
]
39+
40+
[dependency-groups]
41+
dev = [
42+
"pytest>=8.0",
43+
"ruff>=0.9",
44+
]

pkgs/standards/tigrbl_orm/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,9 @@ build-backend = "poetry.core.masonry.api"
3030
packages = [
3131
{ include = "tigrbl_orm" },
3232
]
33+
34+
[dependency-groups]
35+
dev = [
36+
"pytest>=8.0",
37+
"ruff>=0.9",
38+
]

pkgs/standards/tigrbl_runtime/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,9 @@ build-backend = "poetry.core.masonry.api"
3434
packages = [
3535
{ include = "tigrbl_runtime" },
3636
]
37+
38+
[dependency-groups]
39+
dev = [
40+
"pytest>=8.0",
41+
"ruff>=0.9",
42+
]

pkgs/standards/tigrbl_typing/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ build-backend = "poetry.core.masonry.api"
3131
packages = [
3232
{ include = "tigrbl_typing" },
3333
]
34+
35+
[dependency-groups]
36+
dev = [
37+
"pytest>=8.0",
38+
"ruff>=0.9",
39+
]

0 commit comments

Comments
 (0)