Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ http_file(
# Checker rule for CopyRight checks/fixes

# docs dependency
bazel_dep(name = "score_process", version = "1.1.1")
bazel_dep(name = "score_process", version = "1.2.0")

# Add Linter
bazel_dep(name = "rules_multitool", version = "1.9.0")
Expand Down
23 changes: 23 additions & 0 deletions docs/requirements/process_overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@
Process Requirements Overview
===============================

Unsatisfied Tool Requirements in Process
########################################

The following table lists tool requirements from our process which are not satisfied.

.. needtable::
:types: gd_req
:columns: id;title;satisfied by
:colwidths: 2;4;1
:style: table
:filter_warning: No unsatisfied requirements, no table. ☺️
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd take out that emoticon.


results = []
for need in needs.filter_types(["gd_req"]):
if not need["id"].startswith("PROCESS_gd_req__tool_"):
continue
if len(need["satisfies_back"]) >= 1:
continue
results.append(need)

All our Tool Requirements
#########################

.. needtable::
:types: tool_req
:columns: satisfies as "Process Requirement" ;id as "Tool Requirement";implemented;source_code_link
Expand Down
8 changes: 4 additions & 4 deletions docs/requirements/requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -447,14 +447,14 @@ Mapping
.. table::
:widths: auto

================================ ===========================
================================ ===================================================
Source Type Allowed Link Target
================================ ===========================
================================ ===================================================
Feature Requirements Stakeholder Requirements
Component Requirements Feature Requirements
Process Requirements Workflows
Tooling Requirements Process Requirements
================================ ===========================
Tooling Requirements Process Requirements, Stakeholder Requirements
================================ ===================================================

.. note::
Certain tool requirements do not have a matching process requirement.
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/score_metamodel/metamodel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ needs_types:
optional_links:
# req-Id: tool_req__docs_req_link_satisfies_allowed
# TODO: make it mandatory
satisfies: gd_req
satisfies: gd_req, stkh_req
optional_options:
codelink: ^.*$
tags: ^.*$
Expand Down
Loading