From 5bdfd6da524d772b48a1c5f13b0719a9bdcf5afc Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Wed, 9 May 2018 10:29:33 -0400 Subject: [PATCH] Add gitlab support, py3.7 checks. Also removes py34 tests --- .gitlab-ci.yml | 25 +++++++++++++++++++++++++ .travis.yml | 4 ++-- 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..1db3211 --- /dev/null +++ b/.gitlab-ci.yml @@ -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 + diff --git a/.travis.yml b/.travis.yml index 5fb50e5..c2edfac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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