{"id":15090166,"url":"https://github.com/reviewdog/action-pytest","last_synced_at":"2025-04-11T22:13:16.961Z","repository":{"id":37858033,"uuid":"454763824","full_name":"reviewdog/action-pytest","owner":"reviewdog","description":"(WIP) Run pytest with Reviewdog :dog:","archived":false,"fork":false,"pushed_at":"2025-03-19T15:15:12.000Z","size":59,"stargazers_count":2,"open_issues_count":9,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-06T03:16:42.033Z","etag":null,"topics":["ci","github-actions","github-actions-ci","github-actions-docker","pytest","pytest-cov","pytest-profiling","python3","reviewdog","reviewdog-action","unit-testing"],"latest_commit_sha":null,"homepage":"https://github.com/reviewdog/reviewdog","language":"Dockerfile","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/reviewdog.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},"funding":{"github":["reviewdog"],"open_collective":"reviewdog","patreon":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2022-02-02T12:22:32.000Z","updated_at":"2025-03-18T18:25:58.000Z","dependencies_parsed_at":"2024-09-19T17:01:39.142Z","dependency_job_id":"7a058960-5cf8-4c04-8869-9cb062c2009c","html_url":"https://github.com/reviewdog/action-pytest","commit_stats":{"total_commits":8,"total_committers":4,"mean_commits":2.0,"dds":0.5,"last_synced_commit":"60b57add9aa87917bc7e8733bdf3e893c12f1e1c"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":"reviewdog/action-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reviewdog%2Faction-pytest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reviewdog%2Faction-pytest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reviewdog%2Faction-pytest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reviewdog%2Faction-pytest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reviewdog","download_url":"https://codeload.github.com/reviewdog/action-pytest/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248487684,"owners_count":21112190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","github-actions","github-actions-ci","github-actions-docker","pytest","pytest-cov","pytest-profiling","python3","reviewdog","reviewdog-action","unit-testing"],"created_at":"2024-09-25T09:22:52.525Z","updated_at":"2025-04-11T22:13:16.945Z","avatar_url":"https://github.com/reviewdog.png","language":"Dockerfile","readme":"# action-pytest\n\n[![Test](https://github.com/reviewdog/action-pytest/workflows/Test/badge.svg)](https://github.com/reviewdog/action-pytest/actions?query=workflow%3ATest)\n[![reviewdog](https://github.com/reviewdog/action-pytest/workflows/reviewdog/badge.svg)](https://github.com/reviewdog/action-pytest/actions?query=workflow%3Areviewdog)\n[![depup](https://github.com/reviewdog/action-pytest/workflows/depup/badge.svg)](https://github.com/reviewdog/action-pytest/actions?query=workflow%3Adepup)\n[![release](https://github.com/reviewdog/action-pytest/workflows/release/badge.svg)](https://github.com/reviewdog/action-pytest/actions?query=workflow%3Arelease)\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/reviewdog/action-pytest?logo=github\u0026sort=semver)](https://github.com/reviewdog/action-pytest/releases)\n[![action-bumpr supported](https://img.shields.io/badge/bumpr-supported-ff69b4?logo=github\u0026link=https://github.com/haya14busa/action-bumpr)](https://github.com/haya14busa/action-bumpr)\n\n## Input\n\n\u003c!-- TODO: update --\u003e\n```yaml\ninputs:\n  github_token:\n    description: 'GITHUB_TOKEN'\n    default: '${{ github.token }}'\n  workdir:\n    description: 'Working directory relative to the root directory.'\n    default: '.'\n  ### Flags for reviewdog ###\n  level:\n    description: 'Report level for reviewdog [info,warning,error]'\n    default: 'error'\n  reporter:\n    description: 'Reporter of reviewdog command [github-pr-check,github-check,github-pr-review].'\n    default: 'github-pr-check'\n  filter_mode:\n    description: |\n      Filtering mode for the reviewdog command [added,diff_context,file,nofilter].\n      Default is added.\n    default: 'added'\n  fail_on_error:\n    description: |\n      Exit code for reviewdog when errors are found [true,false]\n      Default is `false`.\n    default: 'false'\n  reviewdog_flags:\n    description: 'Additional reviewdog flags'\n    default: ''\n  ### Flags for pytest ###\n```\n\n## Usage\n\n```yaml\nname: reviewdog\non: [pull_request]\njobs:\n  pytest:\n    name: runner / pytest\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0\n      - uses: reviewdog/action-pytest@v1\n        with:\n          github_token: ${{ secrets.github_token }}\n          # Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].\n          reporter: github-pr-review\n          # Change reporter level if you need.\n          # GitHub Status Check won't become failure with warning.\n          level: warning\n```\n\n## Development\n\n### Release\n\n#### [haya14busa/action-bumpr](https://github.com/haya14busa/action-bumpr)\nYou can bump version on merging Pull Requests with specific labels (bump:major,bump:minor,bump:patch).\nPushing tag manually by yourself also work.\n\n#### [haya14busa/action-update-semver](https://github.com/haya14busa/action-update-semver)\n\nThis action updates major/minor release tags on a tag push. e.g. Update v1 and v1.2 tag when released v1.2.3.\nref: https://help.github.com/en/articles/about-actions#versioning-your-action\n\n### Lint - reviewdog integration\n\nThis reviewdog action is integrated with reviewdog to run lints\nwhich is useful for Docker container based actions.\n\n![reviewdog integration](https://user-images.githubusercontent.com/3797062/72735107-7fbb9600-3bde-11ea-8087-12af76e7ee6f.png)\n\nSupported linters:\n\n- [reviewdog/action-shellcheck](https://github.com/reviewdog/action-shellcheck)\n- [reviewdog/action-hadolint](https://github.com/reviewdog/action-hadolint)\n- [reviewdog/action-misspell](https://github.com/reviewdog/action-misspell)\n\n### Dependencies Update Automation\nThis repository uses [reviewdog/action-depup](https://github.com/reviewdog/action-depup) to update\nreviewdog version.\n\n[![reviewdog depup demo](https://user-images.githubusercontent.com/3797062/73154254-170e7500-411a-11ea-8211-912e9de7c936.png)](https://github.com/reviewdog/action-pytest/pull/6)\n","funding_links":["https://github.com/sponsors/reviewdog","https://opencollective.com/reviewdog"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freviewdog%2Faction-pytest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freviewdog%2Faction-pytest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freviewdog%2Faction-pytest/lists"}