diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 1db3211..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -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 -