Skip to content
Snippets Groups Projects
.gitlab-ci.yml 853 B
# This file is a template, and might need editing before it works on your project.
# This file is a template, and might need editing before it works on your project.
image: python:latest

before_script:
  - python3 -V                                   # Print out python version for debugging

stages:
  - build
  - test

build:
  script:
  - python3 setup.py bdist_wheel
  # an alternative approach is to install and run:
  # - pip3 install dist/*
  # run the command here
  #artifacts:
  #  paths:
  #  - dist/*.whl

test:
  script:
  #- python3 setup.py test
  - pip3 install --user tox flake8  # you can also use tox
  - tox -e py36,flake8
  - python -m unittest discover navipy



pages:
  script:
  - pip3 install sphinx sphinx-rtd-theme
  - cd doc ; make html
  - mv build/html/ ../public/
  artifacts:
    paths:
    - public
  only:
  - master