From 1cd663794bb5d813ffc4415b006603e2246c1d90 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Mon, 22 Jun 2015 22:37:57 -0500
Subject: [PATCH] Disable doctests on Py3 (ordering and other minutiae are too
 non-deterministic)

---
 .gitlab-ci.yml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 07a520170..5f7d5a646 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,8 @@
 Python 2.7 AMD CPU:
   script:
-  - py_version=2.7
+  - export PY_EXE=python2.7
   - export PYOPENCL_TEST=amd:pu
-  - EXTRA_INSTALL="numpy mako"
+  - export EXTRA_INSTALL="numpy mako"
   - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
   - ". ./build-and-test-py-project.sh"
   tags:
@@ -12,9 +12,10 @@ Python 2.7 AMD CPU:
   - tags
 Python 3.4 AMD CPU:
   script:
-  - py_version=3.4
+  - export PY_EXE=python3.4
   - export PYOPENCL_TEST=amd:pu
-  - EXTRA_INSTALL="numpy mako"
+  - export EXTRA_INSTALL="numpy mako"
+  - export NO_DOCTESTS=1
   - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
   - ". ./build-and-test-py-project.sh"
   tags:
-- 
GitLab