Skip to content

karsil/docker-nox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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