Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 596 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 596 Bytes

docker-nox

This is an unofficial image.

Docker Hub

Source

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.

Gitlab CI

image: "karsil/nox"

stages:
- test

unittests:
  stage: test
  script:
  - nox # expects noxfile.py at repository root

Run locally

docker run --rm -it -v $(pwd):/source karsil/nox:latest nox -f source/noxfile.py