From 8bd09c3726c55a0a6197d461d24888a92d747c32 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 5 Jan 2021 09:22:04 -0500 Subject: [PATCH] Delete .gitlab-ci.yml --- .gitlab-ci.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .gitlab-ci.yml 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 -