From 2e814dea86d9fe391e1c2b30108f4b2b5b5cc23b Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Tue, 30 Jul 2019 21:34:42 -0700 Subject: [PATCH] Simplify drone build --- .drone.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index de3d5ef..0417039 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,7 @@ steps: image: python:3 commands: - python -V - - make test-env test + - make test - name: notify image: drillster/drone-email @@ -38,7 +38,7 @@ steps: image: python:3.4 commands: - python -V - - make test-env test + - make test - name: notify image: drillster/drone-email @@ -66,7 +66,7 @@ steps: image: python:3.5 commands: - python -V - - make test-env test + - make test - name: notify image: drillster/drone-email @@ -94,7 +94,7 @@ steps: image: python:3.6 commands: - python -V - - make test-env test + - make test - name: notify image: drillster/drone-email @@ -122,7 +122,7 @@ steps: image: python:3.7 commands: - python -V - - make test-env test + - make test - name: notify image: drillster/drone-email @@ -206,7 +206,7 @@ steps: - name: push to test pypi image: python:3 commands: - - make build-env upload-test + - make upload-test environment: TWINE_USERNAME: from_secret: PYPI_USERNAME @@ -216,7 +216,7 @@ steps: - name: push to pypi image: python:3 commands: - - make build-env upload + - make upload environment: TWINE_USERNAME: from_secret: PYPI_USERNAME