✔️ CircleCI: Test using the python:3.6.12 image

fix/readme-no-checkpoint
Gerber, Mike 2 years ago
parent 85f5b685eb
commit 97e28a9f67

@ -4,24 +4,24 @@ orbs:
jobs: jobs:
build-python36: test-python36:
docker: docker:
- image: ubuntu:18.04 - image: python:3.6.12
environment: environment:
- LC_ALL=C.UTF-8
- PYTHONIOENCODING: utf-8 - PYTHONIOENCODING: utf-8
steps: steps:
- run: apt-get update ; apt-get install -y make git curl python3 python3-pip wget imagemagick locales - run: apt-get update; apt-get install -y make git curl wget imagemagick
- run: locale-gen "en_US.UTF-8"; update-locale LC_ALL="en_US.UTF-8"
- checkout - checkout
- run: pip3 install --upgrade pip - run: pip3 install --upgrade pip
- run: make install deps-test PIP_INSTALL="pip3 install" - run: make install deps-test PIP_INSTALL="pip3 install"
- run: make coverage LC_ALL=en_US.utf8 - run: make coverage
- codecov/upload - codecov/upload
workflows: workflows:
build: build:
jobs: jobs:
- build-python36: - test-python36:
filters: filters:
branches: branches:
ignore: ignore:

Loading…
Cancel
Save