Metadata-Version: 2.0
Name: pytest-selenium-pdiff
Version: 0.4.0
Summary: A pytest package implementing perceptualdiff for Selenium tests.
Home-page: https://github.com/rentlytics/pytest-selenium-pdiff
Author: Phil Plante
Author-email: phil@rentlytics.com
License: MIT
Keywords: pytest selenium pdiff perceptualdiff
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Framework :: Pytest
Requires-Dist: pytest (>=2.9.2)
Requires-Dist: pytest-selenium (>=1.3.1)
Requires-Dist: sh (==1.11)
Requires-Dist: pillow (==4.0.0)

# pytest-selenium-pdiff

[![Current Version](https://img.shields.io/pypi/v/pytest-selenium-pdiff.svg)](https://pypi.python.org/pypi/pytest-selenium-pdiff)
[![Build Status](https://img.shields.io/circleci/project/rentlytics/pytest-selenium-pdiff.svg)](https://circleci.com/gh/rentlytics/pytest-selenium-pdiff)

A pytest package implementing perceptualdiff for Selenium tests.

* Free software: MIT license
* Documentation: https://pytest-selenium-pdiff.readthedocs.org.

## Features
* Embeds screenshots in [pytest-html](https://pypi.python.org/pypi/pytest-html) reports
* Supports ImageMagick or perceptualdiff for image comparison.

## Use with pytest-html and pytest-selenium
By default pytest-selenium will embed a screenshot depicting the current browser state.  This will lead to a duplicated screenshot because of this plugin's behavior.  At this time the best way to exclude the pytest-selenium screenshot is to set the environment variable `SELENIUM_EXCLUDE_DEBUG=screenshot`.

## Working With This Repo
### Setup
1. Set up and activate [virtual environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/) in the repo by
running: `virtualenv venv` and then `source venv/bin/activate`
1. Run `pip install -r requirements_dev.txt`
1. Install PhantomJS with `brew install phantomjs`
1. Run `tox` to run the tests for the repo

### Making a release
For Rentlytics employees, to release new code for the pytest-selenium-pdiff project to pypi, follow these steps:

1. run `bumpversion` to bump the version
1. make sure there is a file in the home directory `~/.pypirc` with the login credentials for PyPi.  For more about
how to upload to PyPi, see [this link](http://peterdowns.com/posts/first-time-with-pypi.html)
1. run `make release` to push the new code to PyPi


=======
History
=======

0.1.0 (2016-06-02)
------------------

* First release on PyPI.


