From 1cddc0c4b9208023faadbaa7087241c373fb607a Mon Sep 17 00:00:00 2001
From: Kevin Lyda <kevin@ie.suberic.net>
Date: Mon, 2 Jan 2017 19:46:14 +0000
Subject: [PATCH] Add pypy test support.

---
 .gitlab-ci.yml | 13 +++++++++++++
 .travis.yml    |  4 +---
 2 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a3c192c..b39a055 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -30,3 +30,16 @@ test:3.6:
   type: test
   script:
     - python setup.py test
+
+test:pypy-2:
+  image: pypy:2-slim
+  type: test
+  script:
+    - python setup.py test
+
+test:pypy-3:
+  image: pypy:3-slim
+  type: test
+  script:
+    - python setup.py test
+
diff --git a/.travis.yml b/.travis.yml
index dffabfb..b0f8abe 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,10 @@
 language: python
 python:
-    - "2.6"
     - "2.7"
-    - "3.2"
     - "3.3"
+    - "3.6"
     - "pypy"
 install:
-    - if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip --quiet install unittest2; fi
     - python setup.py install
 script:
     - python setup.py test
-- 
GitLab