Add noxfile

This commit is contained in:
Alexander Hess 2020-10-02 15:34:31 +02:00
parent fc87305922
commit 3b9fc59cb6
Signed by: alexander
GPG key ID: 344EA5AB10D868E0

13
noxfile.py Normal file
View 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