From 3c38e8ffafd1d33a85242c3e7fa8d1f9d22d6eb7 Mon Sep 17 00:00:00 2001
From: "[6~" <inform@tiker.net>
Date: Thu, 12 Mar 2020 14:12:30 -0500
Subject: [PATCH] Update README to use Github badge

---
 azure-pipelines.yml | 91 ---------------------------------------------
 1 file changed, 91 deletions(-)
 delete mode 100644 azure-pipelines.yml

diff --git a/azure-pipelines.yml b/azure-pipelines.yml
deleted file mode 100644
index 11b2957..0000000
--- a/azure-pipelines.yml
+++ /dev/null
@@ -1,91 +0,0 @@
-jobs:
--
-    job: 'Pytest'
-    pool:
-        vmImage: 'ubuntu-latest'
-    strategy:
-        matrix:
-            Python27:
-                python.version: '2.7'
-            Python36:
-                python.version: '3.6'
-            Python37:
-                python.version: '3.7'
-            Python38:
-                python.version: '3.8'
-
-    steps:
-    -
-        task: UsePythonVersion@0
-        inputs:
-            versionSpec: '$(python.version)'
-
-    -
-        script: |
-            set -e
-            EXTRA_INSTALL="numpy"
-            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
-
-        displayName: 'Pytest'
-
-    -
-        task: PublishTestResults@2
-        inputs:
-            testResultsFormat: 'JUnit'
-            testResultsFiles: 'test/pytest.xml'
-
--
-    job: 'Flake8'
-    pool:
-        vmImage: 'ubuntu-latest'
-    strategy:
-        matrix:
-            Python38:
-                python.version: '3.8'
-
-    steps:
-    -
-        task: UsePythonVersion@0
-        inputs:
-            versionSpec: '$(python.version)'
-
-    -
-        script: |
-            set -e
-            curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-flake8.sh
-            . ./prepare-and-run-flake8.sh ./pytools ./test
-
-        displayName: 'Flake8'
-
--
-    job: 'Pylint'
-    pool:
-        vmImage: 'ubuntu-latest'
-    strategy:
-        matrix:
-            Python37:
-                python.version: '3.7'
-
-    steps:
-    -
-        task: UsePythonVersion@0
-        inputs:
-            versionSpec: '$(python.version)'
-
-    -
-        script: |
-            set -e
-            EXTRA_INSTALL="pymbolic matplotlib"
-            curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-pylint.sh
-            . ./prepare-and-run-pylint.sh pytools test/test_*.py
-
-        displayName: 'Pylint'
-
-schedules:
--
-    cron: "0 0 * * 0"
-    displayName: Weekly build
-    branches:
-        include:
-        - master
-- 
GitLab