{"id":47795050,"url":"https://github.com/eclipse-score/score","last_synced_at":"2026-04-03T16:13:56.144Z","repository":{"id":263974163,"uuid":"889058819","full_name":"eclipse-score/score","owner":"eclipse-score","description":"Score project main repository","archived":false,"fork":false,"pushed_at":"2026-03-30T07:49:46.000Z","size":694044,"stargazers_count":91,"open_issues_count":566,"forks_count":89,"subscribers_count":15,"default_branch":"main","last_synced_at":"2026-03-30T08:38:17.421Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://eclipse-score.github.io/score","language":"Starlark","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eclipse-score.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-15T14:29:38.000Z","updated_at":"2026-03-30T07:44:04.000Z","dependencies_parsed_at":"2024-12-06T17:21:54.777Z","dependency_job_id":"05cf3bfd-6a31-4dde-98a4-ab6e6e34c69b","html_url":"https://github.com/eclipse-score/score","commit_stats":null,"previous_names":["eclipse-score/score"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/eclipse-score/score","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fscore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fscore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fscore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fscore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipse-score","download_url":"https://codeload.github.com/eclipse-score/score/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fscore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31362716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T15:19:21.178Z","status":"ssl_error","status_checked_at":"2026-04-03T15:19:20.670Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-03T16:13:55.300Z","updated_at":"2026-04-03T16:13:56.131Z","avatar_url":"https://github.com/eclipse-score.png","language":"Starlark","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Score Platform\n\n## Building\n\n### Development environment\nThe build currently supports Linux environments.\nFollow [instructions](https://eclipse-score.github.io/score/main/contribute/development/index.html) to set up your development environment.\n\nSome important commands to get you started:\n\n```sh\n# Display useful bazel commands\nbazel run //:help\n\n# Check formatting\nbazel test //:format.check\n\n# Fix formatting\nbazel run //:format.fix\n\n# Check for license headers\nbazel run //:copyright.check\n\n# Fix license headers\nbazel run //:copyright.fix\n```\n\n### Building Documentation\n\nScore supports multiple methods for generating documentation, tailored to different workflows:  \n1.  **Documentation builds** for building the documentation.\n2. **IDE independent live preview** for live previews of documentation without IDE integration.\n3. **IDE integration** for live previews, live warnings and even faster iterations.\n\n\n```sh\nbazel run //:docs \n```\nThe output will be located in `_build`\n\n\n#### IDE independent live preview\n\nFor a documentation live preview independent of an IDE (CLI + browser only), `sphinx-autobuild` can be used.  \nThis will automatically rebuild the preview after save and have it available at `http://127.0.0.1:8000`  \n```sh\nbazel run //:live_preview \n```\n\n#### IDE integration\n\nFor live previews, warnings, and linting during development, integrate Esbonio with your IDE (e.g., VS Code):\n\n```sh\nbazel run //:ide_support\n```\n\nVS Code: Install the Esbonio extension in VS Code. After installation, restart your IDE.\nYou should now have live preview available when you open a `.rst` file.  \n\n\u003e Note: if the extension was already installed when you ran the `ide_support` command,\nyou will need to restart your IDE.  \n\nFor features like type detection in conf.py or extensions,\npoint your IDE to the .venv_docs virtual environment.  \nRe-run //docs:ide_support if you update Sphinx extensions or other dependencies.\n\n\n### Testing\n\nUse the following command to run all available tests:\n\n```sh\n$ bazel test //...\n```\n\nHowever it's also  possible to run specific tests or set of tests.\n\nTo run all tests of a certain language use the command below, here an example for python.\n```sh\n$ bazel query 'kind(py.*, tests(//...))' | xargs bazel tests\n```\n\nGrouping of tests via tags is also supported:\n```sh\n$ bazel test --test_tag_filters=docs-build\n```\nYou can add as many tags as you like, as long as a test has at least one of the tags it will be executed.  \n\n\u003e *Note: In order for a test to be picked up by this it has to be marked with the tag. Read more [here](/tools/testing/pytest/README.md)\n\n\n### Test coverage for Python\n\nTo generate coverage data for Python test targets, run the following command:\n```sh\nbazel coverage --combined_report=lcov //docs:score_metamodel_test\n```\nThis generates a coverage file `_coverage_report.dat` in the folder `bazel-out/_coverage` for the Python test target `//docs:score_metamodel_test`.  \nReplace the target to execute coverage for a different test target.\n\nYou can use the tool `genhtml` to generate an HTML report as follows:\n```sh\ngenhtml --ignore-errors mismatch --branch-coverage --output genhtml \"$(bazel info output_path)/_coverage/_coverage_report.dat\"\n```\nThis generates an HTML report in the folder `genhtml` which shows both line and branch coverage. Open file `genhtml/index.html` in a browser to show the report.\n\nThe tool `genhtml` is part of the `lcov` toolchain (https://github.com/linux-test-project/lcov).  \nYou can install it on Debian/Ubuntu system as follows:\n```sh\nsudo apt update\nsudo apt install lcov\n```\n\n\n### Notes\n#### Output Locations\n* Bazel builds output in the `_build` directory (cmd: `bazel run //:docs`)\n* Incremental builds output to _build, regardless of chosen way.\n\n#### Troubleshooting\n* Restart your IDE if live previews or warnings are not working after running ide_support.\n* Ensure your virtual environment is up-to-date by re-running //docs:ide_support when dependencies\n  change.\n* Ensure you ran //:ide_support before executing //:format.check or //:format.fix\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-score%2Fscore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipse-score%2Fscore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-score%2Fscore/lists"}