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