mozregression is an interactive regression rangefinder for quickly tracking down the source of bugs in Mozilla nightly and inbound builds.
You can start using mozregression today:
- start with our installation guide, then
- take a look at our Quick Start document.
Build status:
For more information see:
https://mozilla.github.io/mozregression/
Found a bug in mozregression? We track issues here. You can file a new bug here.
Want to hack on mozregression ? Cool!
For a full environment setup (with GUI support), please see the gui/README.rst file. This is recommended.
If you are really sure that you only want to hack on the mozregression command line:
-
Install virtualenv or virtualenvwrapper.
-
install dependencies:
With virtualenvwrapper:
mkvirtualenv -p /usr/bin/python2 mozregression
pip install -r requirements-dev.txt
Or with virtualenv: ::
virtualenv -p /usr/bin/python2 venv
source venv/bin/activate
pip install -r requirements-dev.txt
- run tests (be sure that your virtualenv is activated):
python setup.py test