From 97e28a9f6716f9625dfab9651c7c5ead6bcfb809 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Thu, 24 Feb 2022 16:39:15 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=94=EF=B8=8F=20CircleCI:=20Test=20using?= =?UTF-8?q?=20the=20python:3.6.12=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 87e3b2a..5508791 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,24 +4,24 @@ orbs: jobs: - build-python36: + test-python36: docker: - - image: ubuntu:18.04 + - image: python:3.6.12 environment: + - LC_ALL=C.UTF-8 - PYTHONIOENCODING: utf-8 steps: - - run: apt-get update ; apt-get install -y make git curl python3 python3-pip wget imagemagick locales - - run: locale-gen "en_US.UTF-8"; update-locale LC_ALL="en_US.UTF-8" + - run: apt-get update; apt-get install -y make git curl wget imagemagick - checkout - run: pip3 install --upgrade pip - run: make install deps-test PIP_INSTALL="pip3 install" - - run: make coverage LC_ALL=en_US.utf8 + - run: make coverage - codecov/upload workflows: build: jobs: - - build-python36: + - test-python36: filters: branches: ignore: