Add noxfile
This commit is contained in:
parent
fc87305922
commit
3b9fc59cb6
1 changed files with 13 additions and 0 deletions
13
noxfile.py
Normal file
13
noxfile.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
"""Configure nox as the task runner."""
|
||||
|
||||
import nox
|
||||
|
||||
|
||||
PYTHON = "3.8"
|
||||
|
||||
# Use a unified .cache/ folder for all develop tools.
|
||||
nox.options.envdir = ".cache/nox"
|
||||
|
||||
# All tools except git and poetry are project dependencies.
|
||||
# Avoid accidental successes if the environment is not set up properly.
|
||||
nox.options.error_on_external_run = True
|
Loading…
Reference in a new issue