This commit is contained in:
Anthony Shaw 2022-03-16 13:04:08 +11:00
Родитель 0621edb01f
Коммит f1705d06e3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A5B5836F7895863C
3 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -1,6 +1,11 @@
Release History
~~~~~~~~~~~~~~~
1.0.3 (16th March 2022)
~~~~~~~~~~~~~~~~~~~~~~~
* Updated to latest pytest-nunit
1.0.2 (15th March 2022)
~~~~~~~~~~~~~~~~~~~~~~~

Просмотреть файл

@ -8,7 +8,7 @@ from packaging.version import parse as parse_version
import pytest
__version__ = "1.0.0rc5"
__version__ = "1.0.3"
DEFAULT_PATH = "test-output.xml"
DEFAULT_COVERAGE_PATH = "coverage.xml"

Просмотреть файл

@ -5,7 +5,7 @@ import os
import codecs
from setuptools import setup
__version__ = "1.0.2"
__version__ = "1.0.3"
def read(fname):
@ -34,7 +34,7 @@ setup(
py_modules=['pytest_azurepipelines'],
python_requires='>=3.5',
data_files=[('resources', ['resources/style.css'])],
install_requires=['pytest>=5.0.0', 'pytest-nunit>=0.6.0'],
install_requires=['pytest>=5.0.0', 'pytest-nunit>=1.0.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',