atdd 0.4.1__py3-none-any.whl → 0.4.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- atdd/coach/commands/initializer.py +4 -0
- atdd/coach/commands/registry.py +2 -2
- atdd/coach/schemas/config.schema.json +32 -1
- atdd/coach/templates/ATDD.md +4 -1
- atdd/coach/validators/test_release_versioning.py +178 -0
- atdd/planner/validators/test_plan_cross_refs.py +4 -2
- atdd/planner/validators/test_train_validation.py +10 -8
- {atdd-0.4.1.dist-info → atdd-0.4.3.dist-info}/METADATA +15 -1
- {atdd-0.4.1.dist-info → atdd-0.4.3.dist-info}/RECORD +13 -12
- {atdd-0.4.1.dist-info → atdd-0.4.3.dist-info}/WHEEL +0 -0
- {atdd-0.4.1.dist-info → atdd-0.4.3.dist-info}/entry_points.txt +0 -0
- {atdd-0.4.1.dist-info → atdd-0.4.3.dist-info}/licenses/LICENSE +0 -0
- {atdd-0.4.1.dist-info → atdd-0.4.3.dist-info}/top_level.txt +0 -0
atdd/coach/commands/registry.py
CHANGED
|
@@ -1555,6 +1555,6 @@ def main(repo_root: Path):
|
|
|
1555
1555
|
|
|
1556
1556
|
|
|
1557
1557
|
if __name__ == "__main__":
|
|
1558
|
-
from
|
|
1559
|
-
repo_root =
|
|
1558
|
+
from atdd.coach.utils.repo import find_repo_root
|
|
1559
|
+
repo_root = find_repo_root()
|
|
1560
1560
|
main(repo_root)
|
|
@@ -11,6 +11,25 @@
|
|
|
11
11
|
"pattern": "^[0-9]+\\.[0-9]+$",
|
|
12
12
|
"examples": ["1.0"]
|
|
13
13
|
},
|
|
14
|
+
"release": {
|
|
15
|
+
"type": "object",
|
|
16
|
+
"description": "Release/versioning settings",
|
|
17
|
+
"properties": {
|
|
18
|
+
"version_file": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "Path to version file (relative to repo root)",
|
|
21
|
+
"examples": ["pyproject.toml", "package.json", "VERSION"]
|
|
22
|
+
},
|
|
23
|
+
"tag_prefix": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "Prefix for git tags",
|
|
26
|
+
"default": "v",
|
|
27
|
+
"examples": ["v", ""]
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"required": ["version_file"],
|
|
31
|
+
"additionalProperties": false
|
|
32
|
+
},
|
|
14
33
|
"sync": {
|
|
15
34
|
"type": "object",
|
|
16
35
|
"description": "Agent config file sync settings",
|
|
@@ -27,8 +46,20 @@
|
|
|
27
46
|
}
|
|
28
47
|
},
|
|
29
48
|
"additionalProperties": false
|
|
49
|
+
},
|
|
50
|
+
"toolkit": {
|
|
51
|
+
"type": "object",
|
|
52
|
+
"description": "ATDD toolkit metadata",
|
|
53
|
+
"properties": {
|
|
54
|
+
"last_version": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "Last installed ATDD toolkit version"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"required": ["last_version"],
|
|
60
|
+
"additionalProperties": false
|
|
30
61
|
}
|
|
31
62
|
},
|
|
32
|
-
"required": ["version"],
|
|
63
|
+
"required": ["version", "release"],
|
|
33
64
|
"additionalProperties": false
|
|
34
65
|
}
|
atdd/coach/templates/ATDD.md
CHANGED
|
@@ -225,7 +225,9 @@ release:
|
|
|
225
225
|
mandatory: true
|
|
226
226
|
|
|
227
227
|
rules:
|
|
228
|
+
- "Version file is required (configured in .atdd/config.yaml)"
|
|
228
229
|
- "Tag must match version exactly: v{version}"
|
|
230
|
+
- "Tag must be on HEAD"
|
|
229
231
|
- "No tag without version bump"
|
|
230
232
|
- "No version bump without tag"
|
|
231
233
|
- "Every repo MUST have versioning"
|
|
@@ -243,10 +245,11 @@ release:
|
|
|
243
245
|
- "Push with tags: git push origin {branch} --tags"
|
|
244
246
|
- "Record in Session Log: 'Released: v{version}'"
|
|
245
247
|
|
|
246
|
-
#
|
|
248
|
+
# Config (required in .atdd/config.yaml):
|
|
247
249
|
# release:
|
|
248
250
|
# version_file: "pyproject.toml" # or package.json, VERSION, etc.
|
|
249
251
|
# tag_prefix: "v"
|
|
252
|
+
# Validator: atdd validate coach enforces version file + tag on HEAD
|
|
250
253
|
|
|
251
254
|
# Agent Coordination (Detailed in action files)
|
|
252
255
|
agents:
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Release versioning validation.
|
|
3
|
+
|
|
4
|
+
Ensures:
|
|
5
|
+
- .atdd/config.yaml defines release.version_file
|
|
6
|
+
- Version file exists and contains a version
|
|
7
|
+
- Git tag on HEAD matches tag_prefix + version
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
import json
|
|
11
|
+
import re
|
|
12
|
+
import subprocess
|
|
13
|
+
from pathlib import Path
|
|
14
|
+
from typing import Optional
|
|
15
|
+
|
|
16
|
+
import pytest
|
|
17
|
+
import yaml
|
|
18
|
+
|
|
19
|
+
from atdd.coach.utils.repo import find_repo_root
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
REPO_ROOT = find_repo_root()
|
|
23
|
+
CONFIG_FILE = REPO_ROOT / ".atdd" / "config.yaml"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def _load_config() -> dict:
|
|
27
|
+
if not CONFIG_FILE.exists():
|
|
28
|
+
pytest.skip(f"Config not found: {CONFIG_FILE}. Run 'atdd init' first.")
|
|
29
|
+
|
|
30
|
+
with open(CONFIG_FILE) as f:
|
|
31
|
+
return yaml.safe_load(f) or {}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def _get_release_config(config: dict) -> tuple[str, str]:
|
|
35
|
+
release = config.get("release")
|
|
36
|
+
if not isinstance(release, dict):
|
|
37
|
+
pytest.fail(
|
|
38
|
+
"Missing release config in .atdd/config.yaml. "
|
|
39
|
+
"Add release.version_file and release.tag_prefix."
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
version_file = release.get("version_file")
|
|
43
|
+
if not version_file or not isinstance(version_file, str):
|
|
44
|
+
pytest.fail("Missing release.version_file in .atdd/config.yaml.")
|
|
45
|
+
|
|
46
|
+
tag_prefix = release.get("tag_prefix", "v")
|
|
47
|
+
if tag_prefix is None:
|
|
48
|
+
tag_prefix = ""
|
|
49
|
+
if not isinstance(tag_prefix, str):
|
|
50
|
+
pytest.fail("release.tag_prefix must be a string.")
|
|
51
|
+
|
|
52
|
+
return version_file, tag_prefix
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def _read_version_from_file(path: Path) -> str:
|
|
56
|
+
if not path.exists():
|
|
57
|
+
pytest.fail(f"Version file not found: {path}")
|
|
58
|
+
|
|
59
|
+
if path.name == "pyproject.toml":
|
|
60
|
+
version = _parse_pyproject_version(path)
|
|
61
|
+
elif path.name == "package.json":
|
|
62
|
+
version = _parse_package_json_version(path)
|
|
63
|
+
else:
|
|
64
|
+
version = _parse_plain_version(path)
|
|
65
|
+
|
|
66
|
+
if not version:
|
|
67
|
+
pytest.fail(f"Could not read version from {path}")
|
|
68
|
+
|
|
69
|
+
return version
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
def _parse_pyproject_version(path: Path) -> Optional[str]:
|
|
73
|
+
text = path.read_text()
|
|
74
|
+
|
|
75
|
+
# Try tomllib/tomli first for correctness
|
|
76
|
+
data = _load_toml(text)
|
|
77
|
+
if isinstance(data, dict):
|
|
78
|
+
project = data.get("project", {})
|
|
79
|
+
if isinstance(project, dict) and project.get("version"):
|
|
80
|
+
return str(project["version"]).strip()
|
|
81
|
+
tool = data.get("tool", {})
|
|
82
|
+
if isinstance(tool, dict):
|
|
83
|
+
poetry = tool.get("poetry", {})
|
|
84
|
+
if isinstance(poetry, dict) and poetry.get("version"):
|
|
85
|
+
return str(poetry["version"]).strip()
|
|
86
|
+
|
|
87
|
+
# Fallback to lightweight parsing
|
|
88
|
+
return _parse_pyproject_version_text(text)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
def _load_toml(text: str) -> Optional[dict]:
|
|
92
|
+
try:
|
|
93
|
+
import tomllib # type: ignore[attr-defined]
|
|
94
|
+
return tomllib.loads(text)
|
|
95
|
+
except Exception:
|
|
96
|
+
try:
|
|
97
|
+
import tomli # type: ignore
|
|
98
|
+
return tomli.loads(text)
|
|
99
|
+
except Exception:
|
|
100
|
+
return None
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
def _parse_pyproject_version_text(text: str) -> Optional[str]:
|
|
104
|
+
current_section = None
|
|
105
|
+
for line in text.splitlines():
|
|
106
|
+
stripped = line.strip()
|
|
107
|
+
if not stripped or stripped.startswith("#"):
|
|
108
|
+
continue
|
|
109
|
+
if stripped.startswith("[") and stripped.endswith("]"):
|
|
110
|
+
current_section = stripped.strip("[]").strip()
|
|
111
|
+
continue
|
|
112
|
+
if current_section in {"project", "tool.poetry"}:
|
|
113
|
+
match = re.match(r'version\s*=\s*["\']([^"\']+)["\']', stripped)
|
|
114
|
+
if match:
|
|
115
|
+
return match.group(1).strip()
|
|
116
|
+
return None
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
def _parse_package_json_version(path: Path) -> Optional[str]:
|
|
120
|
+
try:
|
|
121
|
+
data = json.loads(path.read_text())
|
|
122
|
+
except json.JSONDecodeError:
|
|
123
|
+
return None
|
|
124
|
+
|
|
125
|
+
version = data.get("version")
|
|
126
|
+
return str(version).strip() if version else None
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
def _parse_plain_version(path: Path) -> Optional[str]:
|
|
130
|
+
for line in path.read_text().splitlines():
|
|
131
|
+
stripped = line.strip()
|
|
132
|
+
if not stripped or stripped.startswith("#"):
|
|
133
|
+
continue
|
|
134
|
+
return stripped
|
|
135
|
+
return None
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
def _git_tags_on_head(repo_root: Path) -> list[str]:
|
|
139
|
+
result = subprocess.run(
|
|
140
|
+
["git", "tag", "--points-at", "HEAD"],
|
|
141
|
+
cwd=str(repo_root),
|
|
142
|
+
capture_output=True,
|
|
143
|
+
text=True,
|
|
144
|
+
)
|
|
145
|
+
if result.returncode != 0:
|
|
146
|
+
stderr = result.stderr.strip() or "git tag --points-at HEAD failed"
|
|
147
|
+
pytest.fail(stderr)
|
|
148
|
+
|
|
149
|
+
tags = [line.strip() for line in result.stdout.splitlines() if line.strip()]
|
|
150
|
+
return tags
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
def test_release_version_file_and_tag_on_head():
|
|
154
|
+
"""
|
|
155
|
+
SPEC-RELEASE-0001: Version file exists and tag on HEAD matches version.
|
|
156
|
+
"""
|
|
157
|
+
config = _load_config()
|
|
158
|
+
version_file, tag_prefix = _get_release_config(config)
|
|
159
|
+
|
|
160
|
+
version_path = Path(version_file)
|
|
161
|
+
if not version_path.is_absolute():
|
|
162
|
+
version_path = (REPO_ROOT / version_path).resolve()
|
|
163
|
+
|
|
164
|
+
version = _read_version_from_file(version_path)
|
|
165
|
+
expected_tag = f"{tag_prefix}{version}"
|
|
166
|
+
|
|
167
|
+
tags = _git_tags_on_head(REPO_ROOT)
|
|
168
|
+
if not tags:
|
|
169
|
+
pytest.fail(
|
|
170
|
+
"No git tag found on HEAD. "
|
|
171
|
+
f"Create tag: git tag {expected_tag}"
|
|
172
|
+
)
|
|
173
|
+
|
|
174
|
+
if expected_tag not in tags:
|
|
175
|
+
found = ", ".join(tags) if tags else "none"
|
|
176
|
+
pytest.fail(
|
|
177
|
+
f"Expected tag '{expected_tag}' on HEAD, found: {found}"
|
|
178
|
+
)
|
|
@@ -5,8 +5,11 @@ Validates that cross-references between wagons, trains, and artifacts are cohere
|
|
|
5
5
|
Tests ensure that consume references point to valid produce artifacts.
|
|
6
6
|
"""
|
|
7
7
|
import pytest
|
|
8
|
+
from pathlib import Path
|
|
8
9
|
from typing import Dict, Set, List, Tuple, Any
|
|
9
10
|
|
|
11
|
+
from atdd.coach.utils.repo import find_repo_root
|
|
12
|
+
|
|
10
13
|
|
|
11
14
|
@pytest.mark.platform
|
|
12
15
|
@pytest.mark.e2e
|
|
@@ -117,8 +120,7 @@ def test_trains_reference_valid_wagons(trains_registry, wagon_manifests):
|
|
|
117
120
|
# Load individual train file if path exists
|
|
118
121
|
if train_path:
|
|
119
122
|
import yaml
|
|
120
|
-
|
|
121
|
-
train_file = Path(__file__).resolve().parents[4] / train_path
|
|
123
|
+
train_file = find_repo_root() / train_path
|
|
122
124
|
|
|
123
125
|
if train_file.exists():
|
|
124
126
|
with open(train_file) as f:
|
|
@@ -13,6 +13,8 @@ import yaml
|
|
|
13
13
|
from pathlib import Path
|
|
14
14
|
from typing import Dict, List, Set, Tuple
|
|
15
15
|
|
|
16
|
+
from atdd.coach.utils.repo import find_repo_root
|
|
17
|
+
|
|
16
18
|
|
|
17
19
|
@pytest.mark.platform
|
|
18
20
|
def test_train_ids_follow_numbering_convention(trains_registry):
|
|
@@ -91,7 +93,7 @@ def test_train_files_exist_for_registry_entries(trains_registry):
|
|
|
91
93
|
When: Checking for train files
|
|
92
94
|
Then: Each train has a file at plan/_trains/{train_id}.yaml
|
|
93
95
|
"""
|
|
94
|
-
repo_root =
|
|
96
|
+
repo_root = find_repo_root()
|
|
95
97
|
trains_dir = repo_root / "plan" / "_trains"
|
|
96
98
|
|
|
97
99
|
missing_files = []
|
|
@@ -121,7 +123,7 @@ def test_all_train_files_registered(trains_registry):
|
|
|
121
123
|
When: Checking registry
|
|
122
124
|
Then: Each file is registered in plan/_trains.yaml
|
|
123
125
|
"""
|
|
124
|
-
repo_root =
|
|
126
|
+
repo_root = find_repo_root()
|
|
125
127
|
trains_dir = repo_root / "plan" / "_trains"
|
|
126
128
|
|
|
127
129
|
# Get all registered train IDs
|
|
@@ -153,7 +155,7 @@ def test_train_id_matches_filename(trains_registry):
|
|
|
153
155
|
When: Loading train data
|
|
154
156
|
Then: train_id field matches filename (without .yaml)
|
|
155
157
|
"""
|
|
156
|
-
repo_root =
|
|
158
|
+
repo_root = find_repo_root()
|
|
157
159
|
trains_dir = repo_root / "plan" / "_trains"
|
|
158
160
|
|
|
159
161
|
mismatches = []
|
|
@@ -183,7 +185,7 @@ def test_train_wagons_exist(trains_registry, wagon_manifests):
|
|
|
183
185
|
When: Checking wagon references
|
|
184
186
|
Then: Each wagon exists in registry or has a manifest in plan/*
|
|
185
187
|
"""
|
|
186
|
-
repo_root =
|
|
188
|
+
repo_root = find_repo_root()
|
|
187
189
|
trains_dir = repo_root / "plan" / "_trains"
|
|
188
190
|
|
|
189
191
|
# Build wagon name set from manifests
|
|
@@ -231,7 +233,7 @@ def test_train_dependencies_are_valid(trains_registry):
|
|
|
231
233
|
When: Checking dependency references
|
|
232
234
|
Then: Each dependency points to a valid train_id
|
|
233
235
|
"""
|
|
234
|
-
repo_root =
|
|
236
|
+
repo_root = find_repo_root()
|
|
235
237
|
trains_dir = repo_root / "plan" / "_trains"
|
|
236
238
|
|
|
237
239
|
# Get all valid train IDs
|
|
@@ -287,7 +289,7 @@ def test_train_artifacts_follow_naming_convention(trains_registry):
|
|
|
287
289
|
"""
|
|
288
290
|
import re
|
|
289
291
|
|
|
290
|
-
repo_root =
|
|
292
|
+
repo_root = find_repo_root()
|
|
291
293
|
trains_dir = repo_root / "plan" / "_trains"
|
|
292
294
|
|
|
293
295
|
pattern = re.compile(r"^[a-z][a-z0-9-]*(?::[a-z][a-z0-9-]*)+(?:\.[a-z][a-z0-9-]*)*$")
|
|
@@ -355,7 +357,7 @@ def test_train_artifacts_exist_in_wagons(trains_registry, wagon_manifests):
|
|
|
355
357
|
Then: Each artifact should be in wagon produce/consume lists
|
|
356
358
|
Note: Soft check - external/system artifacts are allowed
|
|
357
359
|
"""
|
|
358
|
-
repo_root =
|
|
360
|
+
repo_root = find_repo_root()
|
|
359
361
|
trains_dir = repo_root / "plan" / "_trains"
|
|
360
362
|
|
|
361
363
|
# Build artifact index from wagons
|
|
@@ -488,7 +490,7 @@ def test_trains_match_schema(trains_registry):
|
|
|
488
490
|
from jsonschema import Draft7Validator
|
|
489
491
|
import json
|
|
490
492
|
|
|
491
|
-
repo_root =
|
|
493
|
+
repo_root = find_repo_root()
|
|
492
494
|
schema_path = repo_root / ".claude" / "schemas" / "planner" / "train.schema.json"
|
|
493
495
|
trains_dir = repo_root / "plan" / "_trains"
|
|
494
496
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: atdd
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: ATDD Platform - Acceptance Test Driven Development toolkit
|
|
5
5
|
License: MIT
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -230,6 +230,20 @@ atdd validate --coverage # With coverage report
|
|
|
230
230
|
atdd validate --html # With HTML report
|
|
231
231
|
```
|
|
232
232
|
|
|
233
|
+
### Release Versioning
|
|
234
|
+
|
|
235
|
+
ATDD enforces release versioning via coach validators. Configure the version file and tag prefix in `.atdd/config.yaml`:
|
|
236
|
+
|
|
237
|
+
```yaml
|
|
238
|
+
release:
|
|
239
|
+
version_file: "pyproject.toml" # or package.json, VERSION, etc.
|
|
240
|
+
tag_prefix: "v"
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
Validation (`atdd validate coach` or `atdd validate`) requires:
|
|
244
|
+
- Version file exists and contains a version
|
|
245
|
+
- Git tag on HEAD matches `{tag_prefix}{version}`
|
|
246
|
+
|
|
233
247
|
### Other Commands
|
|
234
248
|
|
|
235
249
|
```bash
|
|
@@ -10,11 +10,11 @@ atdd/coach/commands/analyze_migrations.py,sha256=2bLfR7OwicBXAZWB4R3Sm4d5jFe87d0
|
|
|
10
10
|
atdd/coach/commands/consumers.py,sha256=7vTexse8xznXSzNWjPGYuF4iJ8ZWymmOSkpcA6IWyxU,27514
|
|
11
11
|
atdd/coach/commands/gate.py,sha256=_V2GypqoGixTs_kLWxFF3HgEt-Wi2r6Iv0YL75yWrWo,5829
|
|
12
12
|
atdd/coach/commands/infer_governance_status.py,sha256=MlLnx8SrJAOQq2rfuxLZMmyNylCQ-OYx4tSi_iFdhRA,4504
|
|
13
|
-
atdd/coach/commands/initializer.py,sha256=
|
|
13
|
+
atdd/coach/commands/initializer.py,sha256=wuvzj7QwA11ilNjRZU6Bx2bLQXITdBHJxR9_mZK7xjA,6503
|
|
14
14
|
atdd/coach/commands/interface.py,sha256=FwBrJpWkfSL9n4n0HT_EC-alseXgU0bweKD4TImyHN0,40483
|
|
15
15
|
atdd/coach/commands/inventory.py,sha256=qU42MnkXt1JSBh5GU7pPSKmCO27Zfga7XwMT19RquJE,20969
|
|
16
16
|
atdd/coach/commands/migration.py,sha256=wRxU7emvvHqWt1MvXKkNTkPBjp0sU9g8F5Uy5yV2YfI,8177
|
|
17
|
-
atdd/coach/commands/registry.py,sha256=
|
|
17
|
+
atdd/coach/commands/registry.py,sha256=76-Pe3_cN483JR1pXUdDIE5WSZjWtVV0Jl8dRtRw_9Y,58349
|
|
18
18
|
atdd/coach/commands/session.py,sha256=MhuWXd5TR6bB3w0t8vANeZx3L476qwLT6EUQMwg-wQA,14268
|
|
19
19
|
atdd/coach/commands/sync.py,sha256=4HNzg8AVaePDwhyBlQcywvNVZDP5NIW8TBsEPbqmJuQ,12545
|
|
20
20
|
atdd/coach/commands/test_interface.py,sha256=a7ut2Hhk0PnQ5LfJZkoQwfkfkVuB5OHA4QBwOS0-jcg,16870
|
|
@@ -25,9 +25,9 @@ atdd/coach/commands/tests/test_telemetry_array_validation.py,sha256=WK5ZXvR1avlz
|
|
|
25
25
|
atdd/coach/conventions/session.convention.yaml,sha256=1wCxQ_Y2Wb2080Xt2JZs0_WsV8_4SC0Tq87G_BCGdiE,26049
|
|
26
26
|
atdd/coach/overlays/__init__.py,sha256=2lMiMSgfLJ3YHLpbzNI5B88AdQxiMEwjIfsWWb8t3To,123
|
|
27
27
|
atdd/coach/overlays/claude.md,sha256=33mhpqhmsRhCtdWlU7cMXAJDsaVra9uBBK8URV8OtQA,101
|
|
28
|
-
atdd/coach/schemas/config.schema.json,sha256=
|
|
28
|
+
atdd/coach/schemas/config.schema.json,sha256=CpePppEAB6WiLeWVgWW3EKOxlLvMHHcWisRnJL9z_SE,1863
|
|
29
29
|
atdd/coach/schemas/manifest.schema.json,sha256=WO13-YF_FgH1awh96khCtk-112b6XSC24anlY3B7GjY,2885
|
|
30
|
-
atdd/coach/templates/ATDD.md,sha256=
|
|
30
|
+
atdd/coach/templates/ATDD.md,sha256=MLbrVbCETJre4c05d5FXGuf6W95Hz9E0jpE4RI9r4cg,13237
|
|
31
31
|
atdd/coach/templates/SESSION-TEMPLATE.md,sha256=gcmfDDD6rREI20vhWXlf01AGbRbR8Hh7Q4QZX4H-pVw,9455
|
|
32
32
|
atdd/coach/utils/__init__.py,sha256=7Jbo-heJEKSAn6I0s35z_2S4R8qGZ48PL6a2IntcNYg,148
|
|
33
33
|
atdd/coach/utils/repo.py,sha256=0kiF5WpVTen0nO14u5T0RflznZhgGco2i9CwKobOh38,3757
|
|
@@ -37,6 +37,7 @@ atdd/coach/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
37
37
|
atdd/coach/validators/shared_fixtures.py,sha256=tdqAb4675P-oOCL08mvSCG9XpmwMCjL9iSq1W5U7-wk,12558
|
|
38
38
|
atdd/coach/validators/test_enrich_wagon_registry.py,sha256=WeTwYJqoNY6mEYc-QAvQo7YVagSOjaNKxB6Q6dpWqIM,6561
|
|
39
39
|
atdd/coach/validators/test_registry.py,sha256=ffN70yA_1xxL3R8gdpGbY2M8dQXyuajIZhBZ-ylNiNs,17845
|
|
40
|
+
atdd/coach/validators/test_release_versioning.py,sha256=-H2hCRfdikVP54LHNDqW9IDmm6JLNBUZRdnF2uICvOI,5194
|
|
40
41
|
atdd/coach/validators/test_session_validation.py,sha256=0VszXtFwRTO04b5CxDPO3klk0VfiqlpdbNpshjMn-qU,39079
|
|
41
42
|
atdd/coach/validators/test_traceability.py,sha256=qTyobt41VBiCr6xRN2C7BPtGYvk_2poVQIe814Blt8E,15977
|
|
42
43
|
atdd/coach/validators/test_update_feature_paths.py,sha256=zOKVDgEIpncSJwDh_shyyou5Pu-Ai7Z_XgF8zAbQVTA,4528
|
|
@@ -110,11 +111,11 @@ atdd/planner/schemas/wmbt.schema.json,sha256=KU_D6r0kQTJod-XHQT5QiiHcUUPJrLgg3aP
|
|
|
110
111
|
atdd/planner/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
112
|
atdd/planner/validators/conftest.py,sha256=CVr3m9mv4xc8G6azcdbZ1VArVvLZw2Utqt2EIOyYdbQ,155
|
|
112
113
|
atdd/planner/validators/test_draft_wagon_registry.py,sha256=Bt4xTjgKddEnnxNOMh8jWhvb3aqRaWGBd227Vv3rWz0,13798
|
|
113
|
-
atdd/planner/validators/test_plan_cross_refs.py,sha256=
|
|
114
|
+
atdd/planner/validators/test_plan_cross_refs.py,sha256=kxlq1uZ2u4mn3r8wHJjXVJsB8nmzwsvSzOlRapJ9pBY,9520
|
|
114
115
|
atdd/planner/validators/test_plan_uniqueness.py,sha256=rlC5khAoBkgpTZJdyHi1JbDUj14v1JiGBFv2iV_AP_Y,7735
|
|
115
116
|
atdd/planner/validators/test_plan_urn_resolution.py,sha256=GoxFiRjOfp69FUmIyKGnsGgpYalOz3qfp6qjyCkga44,9440
|
|
116
117
|
atdd/planner/validators/test_plan_wagons.py,sha256=l4jbHf9Kg-Fy8Gz5O8BO7PDQKbbeLN0uctoErPK_YKI,7357
|
|
117
|
-
atdd/planner/validators/test_train_validation.py,sha256=
|
|
118
|
+
atdd/planner/validators/test_train_validation.py,sha256=KsAMxtuyipHse02x91k4rLWUxRiHW29sYBWZ6KNbfJ4,16870
|
|
118
119
|
atdd/planner/validators/test_wagon_urn_chain.py,sha256=KY_0vrj6CoiQJ80WbqfCGCYbup13cVssaxbNO0eVf74,26697
|
|
119
120
|
atdd/planner/validators/test_wmbt_consistency.py,sha256=jdfu4xWEozzBGwplKDXxuDQNLBDxB_AC96NHLkyHqQ8,10875
|
|
120
121
|
atdd/planner/validators/test_wmbt_vocabulary.py,sha256=PCivTzV7ntlZBa-PVzpBwEiKqLumsEZXfj1r2xl9usM,18803
|
|
@@ -181,9 +182,9 @@ atdd/tester/validators/test_red_supabase_layer_structure.py,sha256=zbUjsMWSJE1MP
|
|
|
181
182
|
atdd/tester/validators/test_telemetry_structure.py,sha256=uU5frZnxSlOn60iHyqhe7Pg9b0wrOV7N14D4S6Aw6TE,22626
|
|
182
183
|
atdd/tester/validators/test_typescript_test_naming.py,sha256=E-TyGv_GVlTfsbyuxrtv9sOWSZS_QcpH6rrJFbWoeeU,11280
|
|
183
184
|
atdd/tester/validators/test_typescript_test_structure.py,sha256=eV89SD1RaKtchBZupqhnJmaruoROosf3LwB4Fwe4UJI,2612
|
|
184
|
-
atdd-0.4.
|
|
185
|
-
atdd-0.4.
|
|
186
|
-
atdd-0.4.
|
|
187
|
-
atdd-0.4.
|
|
188
|
-
atdd-0.4.
|
|
189
|
-
atdd-0.4.
|
|
185
|
+
atdd-0.4.3.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
186
|
+
atdd-0.4.3.dist-info/METADATA,sha256=KAH0NMoqTXf3-U24pNLCP6-x0G5-otbGLiCvPa1t5cE,8426
|
|
187
|
+
atdd-0.4.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
188
|
+
atdd-0.4.3.dist-info/entry_points.txt,sha256=-C3yrA1WQQfN3iuGmSzPapA5cKVBEYU5Q1HUffSJTbY,38
|
|
189
|
+
atdd-0.4.3.dist-info/top_level.txt,sha256=VKkf6Uiyrm4RS6ULCGM-v8AzYN8K2yg8SMqwJLoO-xs,5
|
|
190
|
+
atdd-0.4.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|