From f0e0b10cc5f9a6086c249074d91c0ca18f63a575 Mon Sep 17 00:00:00 2001 From: Jason Carver Date: Tue, 20 Feb 2018 18:09:58 -0800 Subject: [PATCH] add pypy3 as a default test environment in circle --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2ba8898..821d1b4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -48,6 +48,12 @@ jobs: - image: circleci/python:3.6 environment: TOXENV: py36-core + pypy3-core: + <<: *common + docker: + - image: pypy + environment: + TOXENV: pypy3-core workflows: version: 2 test: @@ -56,3 +62,4 @@ workflows: - lint - py35-core - py36-core + - pypy3-core