Skip to content
Snippets Groups Projects
Commit 62d676ca authored by Robert Habermann's avatar Robert Habermann
Browse files

add ci config

parent cdf3baf9
No related branches found
No related tags found
No related merge requests found
before_script:
- pip install tox setuptools
cache:
paths:
- /root/.cache
stages:
- style
- test
- package
py34:
stage: test
image: python:2.7
script:
- tox -e py34
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:latest
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/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment