Skip to content
Snippets Groups Projects
.gitlab-ci.yml 753 B
before_script:
  - pip install tox setuptools
cache:
  paths:
  - /root/.cache
stages:
  - style
  - test
  - package

py26:
  stage: test
  image: python:2.6
  script:
    - tox -e py26

py27:
  stage: test
  image: python:2.7
  script:
    - tox -e py27

py33:
  stage: test
  image: python:3.3
  script:
    - tox -e py33

py34:
  stage: test
  image: python:3.4
  script:
    - tox -e py34

py35:
  stage: test
  image: python:3.5
  script:
    - tox -e py35

pep8:
  image: python:3.4
  stage: style
  script:
    - tox -e pep8

wheel:
  image: python:3.4
  stage: package
  script:
    tox -e wheel
  artifacts:
    paths:
      - dist/

sdist:
  image: python:3.4
  stage: package
  script:
    tox -e sdist
  artifacts:
    paths:
      - dist/