{"id":13460216,"url":"https://github.com/wntrblm/nox","last_synced_at":"2026-04-10T19:04:09.377Z","repository":{"id":36963952,"uuid":"52413187","full_name":"wntrblm/nox","owner":"wntrblm","description":"Flexible test automation for Python","archived":false,"fork":false,"pushed_at":"2026-03-23T20:30:49.000Z","size":5754,"stargazers_count":1507,"open_issues_count":80,"forks_count":175,"subscribers_count":18,"default_branch":"main","last_synced_at":"2026-04-03T01:38:00.909Z","etag":null,"topics":["automation","python","testing"],"latest_commit_sha":null,"homepage":"https://nox.thea.codes","language":"Python","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/wntrblm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"open_collective":"python-nox"}},"created_at":"2016-02-24T04:02:58.000Z","updated_at":"2026-04-01T20:29:37.000Z","dependencies_parsed_at":"2023-12-04T23:12:06.701Z","dependency_job_id":"1b599fb7-2c25-417d-8303-32b34937e4be","html_url":"https://github.com/wntrblm/nox","commit_stats":{"total_commits":612,"total_committers":112,"mean_commits":5.464285714285714,"dds":0.8774509803921569,"last_synced_commit":"771c1c75aa155287b5748b46ee0d06b29994ff00"},"previous_names":["theacodes/nox"],"tags_count":62,"template":false,"template_full_name":null,"purl":"pkg:github/wntrblm/nox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wntrblm%2Fnox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wntrblm%2Fnox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wntrblm%2Fnox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wntrblm%2Fnox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wntrblm","download_url":"https://codeload.github.com/wntrblm/nox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wntrblm%2Fnox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31470196,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"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","python","testing"],"created_at":"2024-07-31T10:00:37.460Z","updated_at":"2026-04-10T19:04:09.369Z","avatar_url":"https://github.com/wntrblm.png","language":"Python","funding_links":["https://opencollective.com/python-nox"],"categories":["Testing","Python","List of Content","Testing Tools","语言资源库"],"sub_categories":["Software","python"],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://github.com/wntrblm/nox/raw/main/docs/_static/alice.png\" alt=\"logo\" width=50%\u003e\n\u003c/p\u003e\n\n# Nox\n\n[![Nox](https://img.shields.io/badge/%F0%9F%A6%8A-Nox-D85E00.svg)](https://github.com/wntrblm/nox)\n[![License](https://img.shields.io/github/license/wntrblm/nox)](https://github.com/wntrblm/nox)\n[![PyPI](https://img.shields.io/pypi/v/nox.svg?logo=python)](https://pypi.python.org/pypi/nox)\n[![GitHub](https://img.shields.io/github/v/release/wntrblm/nox?logo=github\u0026sort=semver)](https://github.com/wntrblm/nox)\n[![Code Style](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/wntrblm/nox)\n[![CI](https://github.com/wntrblm/nox/workflows/CI/badge.svg)](https://github.com/wntrblm/nox/actions?query=workflow%3ACI)\n[![Downloads](https://static.pepy.tech/personalized-badge/nox?period=total\u0026units=international_system\u0026left_color=grey\u0026right_color=green\u0026left_text=Downloads)](https://pepy.tech/project/nox)\n\n*Flexible test automation with Python*\n\n* **Documentation:** [https://nox.readthedocs.io](https://nox.readthedocs.io)\n\n* **Source Code:** [https://github.com/wntrblm/nox](https://github.com/wntrblm/nox)\n\n## Overview\n\n`nox` is a command-line tool that automates testing in multiple Python environments, similar to [tox][]. Unlike tox, Nox uses a standard Python file for configuration:\n\n```python\nimport nox\n\n\n@nox.session\ndef tests(session: nox.Session) -\u003e None:\n    session.install(\"pytest\")\n    session.run(\"pytest\")\n\n@nox.session\ndef lint(session: nox.Session) -\u003e None:\n    session.install(\"flake8\")\n    session.run(\"flake8\", \"--import-order-style\", \"google\")\n```\n\n## Installation\n\nNox is designed to be installed globally (not in a project virtual environment), the recommended way of doing this is via [pipx], a tool designed to install python CLI programs whilst keeping them separate from your global or system python.\n\nTo install Nox with [pipx][]:\n\n```shell\npipx install nox\n```\n\nYou can also use [pip][] in your global python:\n\n```shell\npython3 -m pip install nox\n```\n\nYou may want to user the [user-site][] to avoid messing with your Global python install:\n\n```shell\npython3 -m pip install --user nox\n```\n\n## Usage\n\n### List all sessions\n\n```shell\nnox -l/--list\n```\n\n### Get help on a particular session (if it has a docstring)\n\n```shell\nnox --usage test\n```\n\n### Run all sessions\n\n```shell\nnox\n```\n\n### Run a particular session\n\n```shell\nnox -s/--session test\n```\n\nCheckout the [docs](https://nox.readthedocs.io) for more! 🎉\n\n## Contributing\n\nNox is an open source project and welcomes contributions of all kinds, checkout the [contributing guide](CONTRIBUTING.md) for help on how to help us out!\n\nAll contributors must follow the [code of conduct](CODE_OF_CONDUCT.md) and be nice to one another! 😃\n\n[tox]: https://tox.readthedocs.io\n[pipx]: https://pypa.github.io/pipx/\n[pip]: https://pip.pypa.io/en/stable/\n[user-site]: https://packaging.python.org/en/latest/tutorials/installing-packages/#installing-to-the-user-site\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwntrblm%2Fnox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwntrblm%2Fnox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwntrblm%2Fnox/lists"}