Add gitlab support, py3.7 checks. Also removes py34 tests

This commit is contained in:
Kevin Fronczak
2018-05-09 10:29:33 -04:00
parent a8f90400b2
commit 5bdfd6da52
2 changed files with 27 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
image: python
stages:
- test
before_script:
- curl -O https://bootstrap.pypa.io/get-pip.py
- python get-pip.py
- pip install tox
python35:
image: python:3.5
stage: test
script: tox -e py35
python36:
image: python:3.6
stage: test
script: tox -e py36
lint:
image: python:3.6
stage: test
script: tox -e lint
+2 -2
View File
@@ -1,8 +1,6 @@
matrix:
fast_finish: true
include:
- python: "3.4.2"
env: TOXENV=py34
- python: "3.6"
env: TOXENV=lint
- python: "3.5"
@@ -13,6 +11,8 @@ matrix:
env: TOXENV=py36
- python: "3.6"
env: TOXENV=build
- python: "3.7-dev"
env: TOXENV=py37
install: pip install -U tox coveralls
language: python