├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── example_output.png ├── pytest_icdiff.py ├── setup.py ├── tests ├── conftest.py └── test_pytest_icdiff.py └── tox.ini /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/README.rst -------------------------------------------------------------------------------- /example_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/example_output.png -------------------------------------------------------------------------------- /pytest_icdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/pytest_icdiff.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_pytest_icdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/tests/test_pytest_icdiff.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwp/pytest-icdiff/HEAD/tox.ini --------------------------------------------------------------------------------