From f910f39316a97aab26759942b47e66233f98ade3 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Thu, 29 Aug 2019 13:40:27 -0500
Subject: [PATCH] Add Py2 Azure Pipeline, attempt 2

---
 azure-pipelines.yml | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 06f34018..2e68ab23 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -1,6 +1,21 @@
 jobs:
 -
-    job: 'Pytest'
+    job: 'Pytest Python 2'
+    pool:
+        vmImage: 'ubuntu-16.04'
+
+    steps:
+    -
+        script: |
+            set -e
+            CONDA_ENVIRONMENT=.test-conda-env-py2.yml
+            curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh
+            . ./build-and-test-py-project-within-miniconda.sh
+
+        displayName: 'Pytest Conda'
+
+-
+    job: 'Pytest Python 3'
     pool:
         vmImage: 'ubuntu-16.04'
 
@@ -14,6 +29,7 @@ jobs:
 
         displayName: 'Pytest Conda'
 
+
 -
     job: 'Flake8'
     pool:
-- 
GitLab