This is an unofficial image.
This container is intended to simplify Continuous Integration (e.g. Gitlab-CI) of Python packages with Nox. It currently supports Python 3.5-3.10.
image: "karsil/nox"
stages:
- test
unittests:
stage: test
script:
- nox # expects noxfile.py at repository root
docker run --rm -it -v $(pwd):/source karsil/nox:latest nox -f source/noxfile.py