Skip to content

Commit

Permalink
Merge pull request #3254 from consideRatio/pr/nox-info
Browse files Browse the repository at this point in the history
nox: add docstring about nox and list command how to use it
  • Loading branch information
consideRatio authored Oct 12, 2023
2 parents dcf1cf3 + 034b3d7 commit 88e9d14
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 88e9d14

Please sign in to comment.