{"id":18574737,"url":"https://github.com/kaliv0/detox-jar","last_synced_at":"2026-01-28T12:04:56.206Z","repository":{"id":257802426,"uuid":"862615750","full_name":"kaliv0/detox-jar","owner":"kaliv0","description":"Command line automation tool","archived":false,"fork":false,"pushed_at":"2024-11-14T10:54:43.000Z","size":102,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-29T01:01:52.478Z","etag":null,"topics":["automation","cli","python-automation","tool"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/detox-jar/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kaliv0.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-24T22:41:29.000Z","updated_at":"2024-11-14T10:53:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"bca202d4-93f3-4e7b-9e9e-4160f7f8abfd","html_url":"https://github.com/kaliv0/detox-jar","commit_stats":null,"previous_names":["kaliv0/detox","kaliv0/detox-jar"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/kaliv0/detox-jar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaliv0%2Fdetox-jar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaliv0%2Fdetox-jar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaliv0%2Fdetox-jar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaliv0%2Fdetox-jar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kaliv0","download_url":"https://codeload.github.com/kaliv0/detox-jar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaliv0%2Fdetox-jar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28845105,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T10:53:21.605Z","status":"ssl_error","status_checked_at":"2026-01-28T10:53:20.789Z","response_time":57,"last_error":"SSL_read: 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":["automation","cli","python-automation","tool"],"created_at":"2024-11-06T23:16:14.255Z","updated_at":"2026-01-28T12:04:56.187Z","avatar_url":"https://github.com/kaliv0.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/kaliv0/detox-jar/blob/main/assets/detox-jar.jpg?raw=true\" width=\"250\" alt=\"Detox jar\"\u003e\n\u003c/p\u003e\n\n# Detox jar\n\n![Python 3.x](https://img.shields.io/badge/python-3.11-blue?style=flat-square\u0026logo=Python\u0026logoColor=white)\n[![PyPI](https://img.shields.io/pypi/v/detox-jar.svg)](https://pypi.org/project/detox-jar/)\n[![Downloads](https://static.pepy.tech/badge/detox-jar)](https://pepy.tech/projects/detox-jar)\n\n\u003cbr\u003eCommand line automation tool in pure Python\n\n---------------------------\n### How to use\n- Describe jobs as tables/dictionaries in a config file called 'detox' (choose between .toml, .yaml or .json format).\n\u003cbr\u003e(Put the config inside the root directory of your project)\n```toml\n# detox.toml\n[test]\ndescription = \"test project\"\ndependencies = [\"pytest\", \"pytest-cov\"]\ncommands = \"pytest -vv --disable-warnings -s --cache-clear\"\n```\n```yaml\n# detox.yaml\ntest:\n  description: test project\n  dependencies:\n    - pytest\n    - pytest-cov\n  commands:\n    - pytest -vv --disable-warnings -s --cache-clear\n```\n\n- \u003ci\u003edescription\u003c/i\u003e and \u003ci\u003edependencies\u003c/i\u003e could be optional but not \u003ci\u003ecommands\u003c/i\u003e\n```toml\n# detox.toml\n[no-deps]\ncommands = \"echo 'Hello world'\"\n```\n(in json)\n```json\n\"no-deps\": {\n  \"commands\": \"echo 'Hello world'\"\n}\n```\n\n- \u003ci\u003edependencies\u003c/i\u003e and \u003ci\u003ecommands\u003c/i\u003e could be strings or (in case of more than one) a list of strings\n```toml\n# detox.toml\ncommands = [\"ruff check --fix\", \"ruff format --line-length=100 .\"]\n```\n```yaml\n# detox.yaml\ncommands:\n  - ruff check --fix\n  - ruff format --line-length=100 .\n```\n\n- You could provide a [run] table inside the config file with a \u003ci\u003e'suite'\u003c/i\u003e - list of selected jobs to run\n```toml\n[run]\nsuite = [\"lint\", \"format\", \"test\"]\n```\n```json\n\"run\": {\n  \"suite\": [\n    \"lint\",\n    \"format\",\n    \"test\",\n    \"no-deps\"\n  ]\n}\n```\n---------------------------\n- Run the tool in the terminal with a simple \u003cb\u003e'detox'\u003c/b\u003e command\n```shell\n$ detox\n```\n```shell\n(logs omitted...)\n$ All jobs succeeded! ['lint', 'format', 'test']\nDetoxing took: 14.088007061000098\n```\n- In case of failing jobs you get general stats\n```shell\n(logs omitted...)\n$ Unsuccessful detoxing took: 13.532951637999759\nFailed jobs: ['format']\nSuccessful jobs: ['lint', 'test']\n```\nor\n```shell\n$ Unsuccessful detoxing took: 8.48367640699962\nFailed jobs: ['format']\nSuccessful jobs: ['lint']\nSkipped jobs: ['test']\n```\n---------------------------\n- You could run specific jobs in the command line\n```shell\n$ detox -j lint\n```\nor a list of jobs\n```shell\n$ detox -j lint format\n```\n\u003cb\u003eNB:\u003c/b\u003e If there is a \u003ci\u003e'run'\u003c/i\u003e table in the config file the jobs specified in the command line take precedence\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaliv0%2Fdetox-jar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaliv0%2Fdetox-jar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaliv0%2Fdetox-jar/lists"}