Skip to content
Open
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
53 changes: 53 additions & 0 deletions .sdlcforge.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"_comment": "SDLC Forge configuration file for SDUtils",
"schema_version": "1.0",
"arch": "amd64",
"projects": [
{
"type": "python",
"name": "SDUtils",
"path": "",
"runtime": {
"name": "python",
"version": "3.9"

Check warning on line 12 in .sdlcforge.json

View check run for this annotation

SHIELD (A²GS + GEM + PRID) / [ARCHI] Architecture Standards (SDUtils)

Runtime non-conforme : SDUtils

Python 3.9 — python 3.9 is below approved 3.13 — Check Architecture Standards
},
"build_tool": {
"name": "venv",
"version": "3.9"
},
"dependency": {
"command": "python3.9 -m venv .venv && . .venv/bin/activate && pip install --upgrade pip && pip install 'numpy>=1.19,<2.0' && pip install -r requirements.txt"
},
"build": {
"command": ". .venv/bin/activate && pip install build && python -m build"
},
"tests": [
{
"type": "unit",
"command": ". .venv/bin/activate && pip install pytest pytest-cov && pytest sd_utils/__tests__/ --cov=sd_utils --cov-report=xml:coverage-reports/coverage.xml --junitxml=test-reports/junit.xml -v"
}
],
"artefacts": {
"source_code": [
"sd_utils/"
],
"test_code": [
"sd_utils/__tests__/"
],
"deliverable": [
"dist/*.whl",
"dist/*.tar.gz"
],
"dependency_manifests": [
"requirements.txt"
],
"tests_reports": [
"test-reports/junit.xml"
],
"coverage_reports": [
"coverage-reports/coverage.xml"
]
}
}
]
}
Loading