Skip to content

Commit

Permalink
nox: add docstring about nox and list command how to use it
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Oct 11, 2023
1 parent 307bbcf commit 034b3d7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
"""
noxfile.py is a configuration file for the command-line tool nox that automates
tasks in multiple Python environments. We use it to setup an environment to
build our documentation.
Config reference: https://nox.thea.codes/en/stable/config.html#noxfile
Common tasks:
- Install nox: pip install nox
- Start a live reloading docs server: nox -- live
"""
import nox

nox.options.reuse_existing_virtualenvs = True
Expand Down

0 comments on commit 034b3d7

Please sign in to comment.