Skip to content
Snippets Groups Projects
Commit f05c58d7 authored by Ole Streicher's avatar Ole Streicher
Browse files

New upstream version 0.5.0

parent 4deef592
No related branches found
No related tags found
No related merge requests found
0.5 (2022-01-12)
----------------
- Removed `astropy` as required dependency. [#31]
- Formally register `array_compare` as marker.
0.4 (2021-12-31)
----------------
......
Metadata-Version: 2.1
Name: pytest-arraydiff
Version: 0.4.0
Version: 0.5.0
Summary: pytest plugin to help with comparing array output from tests
Home-page: https://github.com/astropy/pytest-arraydiff
Author: The Astropy Developers
......@@ -23,8 +23,13 @@ Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
Provides-Extra: test
License-File: LICENSE
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5811772.svg
:target: https://doi.org/10.5281/zenodo.5811772
:alt: 10.5281/zenodo.5811772
.. image:: https://github.com/astropy/pytest-arraydiff/workflows/CI/badge.svg
:target: https://github.com/astropy/pytest-arraydiff/actions
:alt: CI Status
......
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5811772.svg
:target: https://doi.org/10.5281/zenodo.5811772
:alt: 10.5281/zenodo.5811772
.. image:: https://github.com/astropy/pytest-arraydiff/workflows/CI/badge.svg
:target: https://github.com/astropy/pytest-arraydiff/actions
:alt: CI Status
......
Metadata-Version: 2.1
Name: pytest-arraydiff
Version: 0.4.0
Version: 0.5.0
Summary: pytest plugin to help with comparing array output from tests
Home-page: https://github.com/astropy/pytest-arraydiff
Author: The Astropy Developers
......@@ -23,8 +23,13 @@ Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
Provides-Extra: test
License-File: LICENSE
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5811772.svg
:target: https://doi.org/10.5281/zenodo.5811772
:alt: 10.5281/zenodo.5811772
.. image:: https://github.com/astropy/pytest-arraydiff/workflows/CI/badge.svg
:target: https://github.com/astropy/pytest-arraydiff/actions
:alt: CI Status
......
pytest>=4.6
numpy
[test]
astropy
......@@ -164,7 +164,9 @@ def pytest_addoption(parser):
def pytest_configure(config):
config.getini('markers').append(
'array_compare: for functions using array comparison')
if config.getoption("--arraydiff") or config.getoption("--arraydiff-generate-path") is not None:
reference_dir = config.getoption("--arraydiff-reference-path")
......
# coding: utf-8
# file generated by setuptools_scm
# don't change, don't track in version control
version = '0.4.0'
version_tuple = (0, 4, 0)
version = '0.5.0'
version_tuple = (0, 5, 0)
......@@ -32,6 +32,9 @@ setup_requires =
install_requires =
pytest>=4.6
numpy
[options.extras_require]
test =
astropy
[options.entry_points]
......@@ -43,7 +46,7 @@ minversion = 4.6
testpaths = tests
xfail_strict = true
markers =
array_compare : for functions using array comparison
array_compare: for functions using array comparison
[flake8]
max-line-length = 150
......
......@@ -19,7 +19,8 @@ deps =
pytest61: pytest==6.1.*
pytest62: pytest==6.2.*
pytestdev: git+https://github.com/pytest-dev/pytest#egg=pytest
extras =
test
commands =
pip freeze
pytest {toxinidir}/tests {posargs}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment