From 6cefa9ce185c746c1a2067ac858c8e55bc163daf Mon Sep 17 00:00:00 2001 From: Boris Pavlovic Date: Tue, 29 Dec 2020 07:00:39 +0000 Subject: [PATCH] Install tox with pip --user to avoid permission issues --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3265219..ffb39d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,7 +17,7 @@ commands: circleci step halt fi jobs: - test: + build: docker: - image: circleci/python:3.6.1 @@ -30,7 +30,7 @@ jobs: - run: name: Install tox - command: pip install tox + command: sudo pip install tox - run: name: Test package build @@ -62,7 +62,7 @@ workflows: version: 2 commit: jobs: - - test + - build nightly: triggers: - schedule: @@ -72,4 +72,4 @@ workflows: only: - master jobs: - - test + - build