Description
The latest documentation is available on Read the Docs.
The source code is available on GitHub.
Nox alternatives and similar packages
Based on the "Build Tools" category.
Alternatively, view Nox alternatives based on common mentions on social networks and blogs.
-
PlatformIO
Your Gateway to Embedded Software Development Excellence :alien: -
buildout
Buildout is a deployment automation tool written in and extended with Python -
BitBake
The official bitbake Git is at https://git.openembedded.org/bitbake/. Do not open issues or file pull requests here.
Collect and Analyze Billions of Data Points in Real Time
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Nox or a related project?
Popular Comparisons
README
Nox
Flexible test automation with Python
Documentation: https://nox.readthedocs.io
Source Code: https://github.com/wntrblm/nox
Overview
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:
import nox
@nox.session
def tests(session: nox.Session) -> None:
session.install("pytest")
session.run("pytest")
@nox.session
def lint(session: nox.Session) -> None:
session.install("flake8")
session.run("flake8", "--import-order-style", "google")
Installation
Nox 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.
To install Nox with pipx:
pipx install nox
You can also use pip in your global python:
python3 -m pip install nox
You may want to user the user-site to avoid messing with your Global python install:
python3 -m pip install --user nox
Usage
List all sessions
nox -l/--list
Run all sessions
nox
Run a particular session
nox -s/--session test
Checkout the docs for more! ๐
Contributing
Nox 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!
All contributors must follow the [code of conduct](CODE_OF_CONDUCT.md) and be nice to one another! ๐
*Note that all licence references and agreements mentioned in the Nox README section above
are relevant to that project's source code only.