gecko-dev/testing/mozharness
Tom Prince 68d3d08ed6 Bug 1453658: [talos] Install cffi before trying to install mitmproxy dependencies; r=bhearsum a=Aryx
Differential Revision: https://phabricator.services.mozilla.com/D925

--HG--
extra : rebase_source : 44873623edcadafa095b7ff59b066bab36ed8bb8
extra : amend_source : 3541e92f6ae8f2ef9321e4f348a927d96bcd0cb2
2018-04-12 10:18:22 -06:00
..
configs Merge inbound to mozilla-central. a=merge 2018-04-04 00:54:16 +03:00
docs Bug 1449750 - Remove device.py from mozharness; r=jmaher 2018-03-29 07:33:42 -06:00
examples
external_tools Bug 1448438 - Update to latest robustcheckout; r=sheehan 2018-03-23 12:53:34 -07:00
manifestparser
mozfile
mozharness Bug 1453658: [talos] Install cffi before trying to install mitmproxy dependencies; r=bhearsum a=Aryx 2018-04-12 10:18:22 -06:00
mozinfo
mozprocess
scripts Bug 1452694 - Use TestRunnerActivity for geckoview mochitest/reftest; r=bc 2018-04-10 13:26:11 -06:00
test
LICENSE
README.txt
mach_commands.py
requirements.txt
setup.cfg
setup.py
tox.ini
unit.sh

README.txt

# Mozharness

## Docs
* https://developer.mozilla.org/en-US/docs/Mozharness_FAQ
* https://wiki.mozilla.org/ReleaseEngineering/Mozharness
* http://moz-releng-mozharness.readthedocs.org/en/latest/mozharness.mozilla.html
* http://moz-releng-docs.readthedocs.org/en/latest/software.html#mozharness

## Submitting changes
Like any Gecko change, please create a patch or submit to Mozreview and
open a Bugzilla ticket under the Mozharness component:
https://bugzilla.mozilla.org/enter_bug.cgi?product=Release%20Engineering&component=Mozharness

This bug will get triaged by Release Engineering

## Run unit tests
To run the unit tests of mozharness the `tox` package needs to be installed:

```
pip install tox
```

There are various ways to run the unit tests. Just make sure you are within the `$gecko_repo/testing/mozharness` directory before running one of the commands below:

```
tox                            # run all unit tests
tox -- -x                      # run all unit tests but stop after first failure
tox -- test/test_base_log.py   # only run the base log unit test
```

Happy contributing! =)