From 4aab99bcbcd9bca46a35a6916238f61dbe39122d Mon Sep 17 00:00:00 2001 From: ahosking Date: Thu, 3 Nov 2022 00:19:01 -0400 Subject: [PATCH] Remove the test phase for now --- .drone.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.drone.yml b/.drone.yml index 5632a0c..2f91ad7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,20 +13,20 @@ steps: - pip3 install --upgrade setuptools - pip3 install Flask gunicorn pytest pytest-cov - pip3 install pendulum ---- -kind: pipeline -type: docker -name: test -steps: - - name: test - image: python:3-buster - commands: - - export PYTHONPATH=. - - export FLASK_APP=period - - apt-get update -qy - - apt-get install -y python3-dev python3-pip - - pip3 install --upgrade pip - - pip3 install --upgrade setuptools - - pip3 install Flask gunicorn pytest pytest-cov - - pip3 install pendulum - - pytest tests --cov --cov-report term --cov-report html --junitxml=report.xml +# --- +# kind: pipeline +# type: docker +# name: test +# steps: +# - name: test +# image: python:3-buster +# commands: +# - export PYTHONPATH=. +# - export FLASK_APP=period +# - apt-get update -qy +# - apt-get install -y python3-dev python3-pip +# - pip3 install --upgrade pip +# - pip3 install --upgrade setuptools +# - pip3 install Flask gunicorn pytest pytest-cov +# - pip3 install pendulum +# - pytest tests --cov --cov-report term --cov-report html --junitxml=report.xml