gecko-dev/testing/mozharness
Alexandre Lissy 7989afba4d Bug 1892254 - GNOME Screencast r=jcristau
Differential Revision: https://phabricator.services.mozilla.com/D220993
2024-09-12 16:46:42 +00:00
..
configs Bug 1883953 - Replace arm-debug-searchfox task with aarch64-debug-searchfox. r=nalexander,geckoview-reviewers,taskgraph-reviewers,jcristau,m_kato 2024-09-05 17:23:29 +00:00
docs Bug 1917163 - Update rstcheck to 6.2.4, fix resulting errors in documents, r=Standard8 2024-09-06 15:04:10 +00:00
examples
external_tools Bug 1900059: Get rid of references to 'six' in gittool.py to fix multil10n.py usage of gittool.py r=releng-reviewers,jcristau,hneiva 2024-06-04 00:25:08 +00:00
mozharness Bug 1883953 - Replace arm-debug-searchfox task with aarch64-debug-searchfox. r=nalexander,geckoview-reviewers,taskgraph-reviewers,jcristau,m_kato 2024-09-05 17:23:29 +00:00
scripts Bug 1892254 - GNOME Screencast r=jcristau 2024-09-12 16:46:42 +00:00
test
LICENSE
README.txt
mach_commands.py Bug 1890910 - delete reftest-no-accel and reftest-snapshot definitions and add a snapshot variant. r=ahal,taskgraph-reviewers 2024-04-15 18:29:49 +00:00
moz.build
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! =)