Bug 1856942: part 5) Factor async loading of a sheet out of `Loader::LoadSheet`....
[gecko.git] / testing / mozharness / README.txt
blobd2a2ce60a42f824c7ec1ab13756c29fe4a2c448a
1 # Mozharness
3 ## Docs
4 * https://developer.mozilla.org/en-US/docs/Mozharness_FAQ
5 * https://wiki.mozilla.org/ReleaseEngineering/Mozharness
6 * http://moz-releng-mozharness.readthedocs.org/en/latest/mozharness.mozilla.html
7 * http://moz-releng-docs.readthedocs.org/en/latest/software.html#mozharness
9 ## Submitting changes
10 Like any Gecko change, please create a patch or submit to Mozreview and
11 open a Bugzilla ticket under the Mozharness component:
12 https://bugzilla.mozilla.org/enter_bug.cgi?product=Release%20Engineering&component=Mozharness
14 This bug will get triaged by Release Engineering
16 ## Run unit tests
17 To run the unit tests of mozharness the `tox` package needs to be installed:
19 ```
20 pip install tox
21 ```
23 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:
25 ```
26 tox                            # run all unit tests
27 tox -- -x                      # run all unit tests but stop after first failure
28 tox -- test/test_base_log.py   # only run the base log unit test
29 ```
31 Happy contributing! =)