gecko-dev/testing/mozharness
Geoff Brown ada08215f5 Bug 1608592 - Remove MINIDUMP_SAVEPATH environment variable from android tasks; r=bc
MINIDUMP_SAVEPATH does nothing and can be safely removed. The correct variable,
MINIDUMP_SAVE_PATH is already set in the Android scripts, such as
https://searchfox.org/mozilla-central/rev/9b4b41b95cbcda63f565bdc24411e15248f91d83/testing/mozharness/scripts/android_emulator_unittest.py#412
so no other changes are required.

Differential Revision: https://phabricator.services.mozilla.com/D59923

--HG--
extra : moz-landing-system : lando
2020-01-22 20:30:55 +00:00
..
configs Bug 1608592 - Remove MINIDUMP_SAVEPATH environment variable from android tasks; r=bc 2020-01-22 20:30:55 +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 Backed out 3 changesets (bug 1525218) for breaking fenix, reference-browser speedometer tasks. a=backout 2020-01-20 11:19:46 +01:00
scripts Bug 1579440 - Set browser.tabs.remote.autostart to true for geckoview. r=snorp 2020-01-21 23:46:32 +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! =)