From e6d14b1d3d2e7e78a76641b376bd0d84fb023eee Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Mon, 18 Oct 2021 22:31:43 -0400 Subject: [PATCH] Update README with azure build status --- README.rst | 3 +-- azure-pipelines.yml | 5 +++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index a45f5f94..30ba9191 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,7 @@ django-helpdesk - A Django powered ticket tracker for small businesses. ======================================================================= -.. image:: https://travis-ci.org/django-helpdesk/django-helpdesk.png?branch=develop - :target: https://travis-ci.org/django-helpdesk/django-helpdesk +[![Build Status](https://dev.azure.com/django-helpdesk/django-helpdesk/_apis/build/status/django-helpdesk.django-helpdesk?branchName=master)](https://dev.azure.com/django-helpdesk/django-helpdesk/_build/latest?definitionId=1&branchName=master) .. image:: https://codecov.io/gh/django-helpdesk/django-helpdesk/branch/develop/graph/badge.svg :target: https://codecov.io/gh/django-helpdesk/django-helpdesk diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e99abcc2..7c818ab3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -54,13 +54,14 @@ steps: - script: | python -m pip install --upgrade pip setuptools wheel - pip install -c constraint-Django$(DJANGO_VERSION).txt -r requirements.txt + pip install -c constraints-Django$(DJANGO_VERSION).txt -r requirements.txt pip install unittest-xml-reporting displayName: 'Install prerequisites' - script: | pushd '$(projectRoot)' - python manage.py test --testrunner xmlrunner.extra.djangotestrunner.XMLTestRunner --no-input + #python manage.py test --testrunner xmlrunner.extra.djangotestrunner.XMLTestRunner --no-input + python quicktest.py helpdesk displayName: 'Run tests' - task: PublishTestResults@2