{"id":24941827,"url":"https://github.com/cynic-net/comci","last_synced_at":"2026-01-28T14:33:26.606Z","repository":{"id":96353825,"uuid":"84623715","full_name":"cynic-net/comci","owner":"cynic-net","description":"comci: Committed CI Results","archived":false,"fork":false,"pushed_at":"2024-09-30T13:42:50.000Z","size":207,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-05-30T16:32:47.504Z","etag":null,"topics":["ci","continuous-integration","git"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cynic-net.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-03-11T04:28:02.000Z","updated_at":"2024-08-21T12:55:16.000Z","dependencies_parsed_at":"2024-08-26T16:05:10.223Z","dependency_job_id":"7a777551-e9b4-492e-b516-b1b74f083a11","html_url":"https://github.com/cynic-net/comci","commit_stats":null,"previous_names":["cynic-net/comci"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cynic-net/comci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynic-net%2Fcomci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynic-net%2Fcomci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynic-net%2Fcomci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynic-net%2Fcomci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cynic-net","download_url":"https://codeload.github.com/cynic-net/comci/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cynic-net%2Fcomci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846058,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T13:02:32.985Z","status":"ssl_error","status_checked_at":"2026-01-28T13:02:04.945Z","response_time":57,"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":["ci","continuous-integration","git"],"created_at":"2025-02-02T18:56:46.554Z","updated_at":"2026-01-28T14:33:26.590Z","avatar_url":"https://github.com/cynic-net.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"comci: Committed Continuous Integration Results\n===============================================\n\nComci (pronounced /COM si/ or /com SI/) is a system for running unit and\nintegration tests for a Git commit and storing the results of those tests\nin the Git repo, associated with the Git commit against which they were\nrun.\n\nThis is an aid to [_continuous integration,_][ci] a concept from [Extreme\nProgramming][xp] where the entire system as currently under development is\ntested very frequently: at least once per day but preferably more often.\nThese tests may be started manually (by simply running `git tscript`\nfrequently) or assissted by a system that runs the tests automatically,\nwithout explicit requests by the developer.\n\n### Usage Overview\n\nThe unit and integration tests for a system are divided up into a set of\ntest scripts, or _tscripts;_ each tscript may optionally take a single\nparameter. Comci adds a `tscript` sub-command to Git to manage running the\ntests, viewing and transfering the results, and the like. A typical\nsession might be:\n\n    $ git commit -m 'my new changes'\n\n    #   Run three test scripts from the full set: 'unit' and 'brief' with\n    #   no parameters passed to them, and 'int' with the parameter 'foo'\n    #   and 'bar'. These will be run in the background on new working\n    #   copies from that commit (a separate working copy for each test) and\n    #   the user will be informed as each one completes.\n\n    $ git tscript run unit brief int,foo int,bar\n\n    #   Here the user can do other things while waiting for the tests to\n    #   complete. For example, run tests against the the _current_ working\n    #   copy (`-i`/`--interactive` option) instead of a commit. This will\n    #   be run in the foreground and the results will not be recorded to git.\n\n    $ vi foo.py\n    $ git tscript run -i unit\n\n    $ git commit -m 'FIXUP: Clean up blah blah blah'\n\n    #   After completion the results can be examined:\n\n    $ git log -2            # A Git note will summarise the results\n    $ git tscript show @^   # Shows details of the tests we ran at the start\n                            # start against what is now the parent of our\n                            # fixup commit.\n\n    #   If all is happy, you can generate a new commit with your cleanup\n    #   and the full set of tests for it. This will run all test scripts\n    #   under tscript/, including 'int' several times with each parameter\n    #   from a list of all the parameters in tscript/int.params.\n\n    $ git rebase -i         # Squash fixups into final commit.\n    $ git tscript run       # Run all tests against this new commit. If the\n                            # commit has already had some tests run against\n                            # it, this will run only the not-yet-run tests.\n\n    #   You can work on something else while these run in the background.\n\n    $ git push                      # Make code available for review.\n    $ git checkout dev/cjs/other    # Hack on different code.\n    ...\n    $ git checkout -                # When tests are complete.\n    $ git push                      # Make test results available for review.\n\n\n\n\u003c!--------------------------------------------------------------------\u003e\n[ci]: https://en.wikipedia.org/wiki/Continuous_integration\n[xp]: https://en.wikipedia.org/wiki/Extreme_programming\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcynic-net%2Fcomci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcynic-net%2Fcomci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcynic-net%2Fcomci/lists"}