Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions How-to: S-Core process step-by-step.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# How-to: S-Core process step-by-step

## 1. Feature & Feature requirements in main score repository

### a. What to do

1. Define Feature
2. Define Feature Requirements and map them to the stakeholder requirements

### b. How to check

1. Automated checks for requirements in docs-as-code.
2. Checklist for things, that can not be automated -> automated check, that checklist is up to date.
495 changes: 489 additions & 6 deletions docs.bzl

Large diffs are not rendered by default.

34 changes: 33 additions & 1 deletion scripts_bazel/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ py_binary(
py_binary(
name = "merge_sourcelinks",
srcs = ["merge_sourcelinks.py"],
deps= [ "//src/extensions/score_source_code_linker"],
main = "merge_sourcelinks.py",
visibility = ["//visibility:public"],
deps = ["//src/extensions/score_source_code_linker"],
)

py_binary(
Expand All @@ -45,3 +45,35 @@ py_binary(
visibility = ["//visibility:public"],
deps = [],
)

py_binary(
name = "filter_needs_json",
srcs = ["filter_needs_json.py"],
main = "filter_needs_json.py",
visibility = ["//visibility:public"],
deps = [],
)

py_binary(
name = "sphinx_needs_to_md",
srcs = ["sphinx_needs_to_md.py"],
main = "sphinx_needs_to_md.py",
visibility = ["//visibility:public"],
deps = [],
)

py_binary(
name = "sphinx_needs_to_trlc",
srcs = ["sphinx_needs_to_trlc.py"],
main = "sphinx_needs_to_trlc.py",
visibility = ["//visibility:public"],
deps = [],
)

py_binary(
name = "validate_checklist",
srcs = ["validate_checklist.py"],
main = "validate_checklist.py",
visibility = ["//visibility:public"],
deps = [],
)
Loading
Loading