gecko-dev/testing/mozharness
Marco Castelluccio 9bbdae6a99 Bug 1607965 - Make Windows coverage build an opt build. r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D59292

--HG--
rename : testing/mozharness/configs/builds/taskcluster_sub_win64/ccov_debug.py => testing/mozharness/configs/builds/taskcluster_sub_win64/ccov_opt.py
extra : moz-landing-system : lando
2020-01-10 09:51:17 +00:00
..
configs Bug 1607965 - Make Windows coverage build an opt build. r=jmaher 2020-01-10 09:51:17 +00:00
docs Bug 1532427 - miscellaneous small fixes of mozharness files r=aki 2019-12-31 23:30:04 +00:00
examples Bug 1532427 - miscellaneous small fixes of mozharness files r=aki 2019-12-31 23:30:04 +00:00
external_tools Bug 1606501 - make mouse_and_screen_resolution.py syntax python3 compatible r=armenzg 2020-01-06 07:15:13 +00:00
mozharness Bug 1585683 - Add mochitest-webgpu jobs, add subsuite = webgpu. r=jmaher,kvark 2020-01-07 22:42:07 +00:00
scripts Bug 1606335 - [marionette] Remove e10s support from build and mozharness. r=marionette-reviewers,ato 2020-01-07 11:16:26 +00:00
test Bug 1532427 - Fix mozharness/test/test_mozilla_merkle when running tox with python 3.5 r=egao 2019-12-17 00:08:39 +00:00
LICENSE
mach_commands.py Bug 1473498 - Fixing Py3 compatibility errors reachable from testing/mach_commands.py r=gbrown 2019-07-16 01:21:55 +00:00
moz.build Bug 1551208 - Update obsolete bug component. r=aki 2019-05-13 20:41:07 +00:00
README.txt
requirements.txt
setup.cfg
setup.py
tox.ini Bug 1603634 - use python3.6 to run mozharness tests in python3 r=jmaher 2019-12-27 18:16:30 +00:00
unit.sh

# 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! =)