From 09fc0f6156a6ff1a2fd5b4ef76b17029758683a6 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 13 Apr 2018 21:25:26 -0700 Subject: [PATCH] Use new make target for drone --- .drone.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1496e8b..ed11497 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,14 +6,11 @@ pipeline: test: image: python:3 commands: - - python3 -m venv env - - ./env/bin/pip install tox - - make test + - make test-env test push_to_pypi: image: python:3 commands: - - ./env/bin/pip install twine - - make upload-test + - make build-env upload-test secrets: - source: PYPI_USERNAME target: TWINE_USERNAME