mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 1413575: Adjust in-tree references to mozbase documentation to point in-tree. r=ahal
MozReview-Commit-ID: rctbByyjTA --HG-- extra : rebase_source : a682eb6d77b79640ac9ec20e9d64340613bcfed7
This commit is contained in:
parent
9fe8de2977
commit
a45ea20b93
@ -39,7 +39,7 @@ ManifestParser Manifests
|
||||
ManifestParser manifests are essentially ini files that conform to a basic
|
||||
set of assumptions.
|
||||
|
||||
The `reference documentation <http://mozbase.readthedocs.org/en/latest/manifestparser.html>`_
|
||||
The :doc:`reference documentation </mozbase/manifestparser>`
|
||||
for manifestparser manifests describes the basic format of test manifests.
|
||||
|
||||
In summary, manifests are ini files with section names describing test files::
|
||||
|
@ -12,7 +12,7 @@ import java.util.Map;
|
||||
|
||||
import org.json.JSONObject;
|
||||
|
||||
// This implements the structured logging API described here: http://mozbase.readthedocs.org/en/latest/mozlog_structured.html
|
||||
// This implements the structured logging API described here: https://firefox-source-docs.mozilla.org/mozbase/loggingreporting.html
|
||||
public class StructuredLogger {
|
||||
private final static HashSet<String> validTestStatus = new HashSet<String>(Arrays.asList("PASS", "FAIL", "TIMEOUT", "NOTRUN", "ASSERT"));
|
||||
private final static HashSet<String> validTestEnd = new HashSet<String>(Arrays.asList("PASS", "FAIL", "OK", "ERROR", "TIMEOUT",
|
||||
|
@ -15,7 +15,7 @@ Consult [open][] [bugs][] and feel free to file [new bugs][].
|
||||
|
||||
|
||||
[project page]: https://wiki.mozilla.org/Auto-tools/Projects/Mozbase
|
||||
[detailed docs]: http://mozbase.readthedocs.org/
|
||||
[detailed docs]: https://firefox-source-docs.mozilla.org/mozbase/index.html
|
||||
[open]: https://bugzilla.mozilla.org/buglist.cgi?resolution=---&component=Mozbase&product=Testing
|
||||
[bugs]: https://bugzilla.mozilla.org/buglist.cgi?resolution=---&status_whiteboard_type=allwordssubstr&query_format=advanced&status_whiteboard=mozbase
|
||||
[new bugs]: https://bugzilla.mozilla.org/enter_bug.cgi?product=Testing&component=Mozbase
|
||||
|
@ -12,7 +12,7 @@ PACKAGE_VERSION = '1.2'
|
||||
setup(name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description="Library to create and manage test manifests",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -17,7 +17,7 @@ setup(name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description="Library for printing stack traces from minidumps "
|
||||
"left behind by crashed processes",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -12,7 +12,7 @@ setup(name='mozdebug',
|
||||
version=PACKAGE_VERSION,
|
||||
description="Utilities for running applications under native code debuggers "
|
||||
"intended for use in Mozilla testing",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -19,7 +19,7 @@ deps = ['mozfile >= 1.0',
|
||||
setup(name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description="Mozilla-authored device management",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -12,7 +12,7 @@ PACKAGE_VERSION = '1.2'
|
||||
setup(name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description="Library of file utilities for use in Mozilla testing",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -12,7 +12,7 @@ deps = ['moznetwork >= 0.24']
|
||||
setup(name='mozhttpd',
|
||||
version=PACKAGE_VERSION,
|
||||
description="Python webserver intended for use with Mozilla testing",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -14,7 +14,7 @@ deps = ['mozfile >= 0.12']
|
||||
setup(name='mozinfo',
|
||||
version=PACKAGE_VERSION,
|
||||
description="Library to get system information for use in Mozilla testing",
|
||||
long_description="see http://mozbase.readthedocs.org",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -24,7 +24,7 @@ deps = ['mozinfo >= 0.7',
|
||||
setup(name='mozInstall',
|
||||
version=PACKAGE_VERSION,
|
||||
description="package for installing and uninstalling Mozilla applications",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
classifiers=['Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
|
@ -15,7 +15,7 @@ setup(
|
||||
name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description="Library for extracting memory leaks from leak logs files",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -12,7 +12,7 @@ PACKAGE_VERSION = '3.5'
|
||||
setup(name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description="Robust log handling specialized for logging in the Mozilla universe",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
author='Mozilla Automation and Testing Team',
|
||||
author_email='tools@lists.mozilla.org',
|
||||
url='https://wiki.mozilla.org/Auto-tools/Projects/Mozbase',
|
||||
|
@ -15,7 +15,7 @@ deps = ['mozinfo',
|
||||
setup(name='moznetwork',
|
||||
version=PACKAGE_VERSION,
|
||||
description="Library of network utilities for use in Mozilla testing",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -11,7 +11,7 @@ PACKAGE_VERSION = '0.25'
|
||||
setup(name='mozprocess',
|
||||
version=PACKAGE_VERSION,
|
||||
description="Mozilla-authored process handling",
|
||||
long_description='see http://mozbase.readthedocs.org/',
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
||||
|
@ -21,7 +21,7 @@ deps = ['mozfile >= 1.0',
|
||||
setup(name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description="Library to create and modify Mozilla application profiles",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
||||
|
@ -28,7 +28,7 @@ assert sys.version_info[0] == 2
|
||||
setup(name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description=desc,
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
||||
|
@ -15,7 +15,7 @@ setup(
|
||||
name=PACKAGE_NAME,
|
||||
version=PACKAGE_VERSION,
|
||||
description="Library for taking screenshots in tests harness",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -19,7 +19,7 @@ except:
|
||||
setup(
|
||||
name='mozsystemmonitor',
|
||||
description='Monitor system resource usage.',
|
||||
long_description=description,
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
license='MPL 2.0',
|
||||
keywords='mozilla',
|
||||
author='Mozilla Automation and Tools Team',
|
||||
|
@ -14,7 +14,7 @@ deps = ['mozinfo']
|
||||
setup(name='moztest',
|
||||
version=PACKAGE_VERSION,
|
||||
description="Package for storing and outputting Mozilla test results",
|
||||
long_description="see http://mozbase.readthedocs.org/",
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=['Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 2 :: Only'],
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
|
@ -12,7 +12,7 @@ PACKAGE_VERSION = '1.4'
|
||||
setup(name='mozversion',
|
||||
version=PACKAGE_VERSION,
|
||||
description='Library to get version information for applications',
|
||||
long_description='See http://mozbase.readthedocs.org',
|
||||
long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
|
||||
classifiers=[],
|
||||
keywords='mozilla',
|
||||
author='Mozilla Automation and Testing Team',
|
||||
|
@ -120,7 +120,7 @@ but otherwise fails:
|
||||
FAIL
|
||||
|
||||
The available variables for the conditions are those provided by
|
||||
[mozinfo](http://mozbase.readthedocs.org/en/latest/mozinfo.html).
|
||||
[mozinfo](https://firefox-source-docs.mozilla.org/mozbase/mozinfo.html).
|
||||
|
||||
For more information on manifest files, see the
|
||||
[wptrunner documentation](http://wptrunner.readthedocs.org/en/latest/expectation.html).
|
||||
|
@ -264,4 +264,4 @@ texinfo_documents = [
|
||||
|
||||
# Example configuration for intersphinx: refer to the Python standard library.
|
||||
intersphinx_mapping = {'python': ('http://docs.python.org/', None),
|
||||
'mozlog': ('http://mozbase.readthedocs.org/en/latest/', None)}
|
||||
'mozlog': ('https://firefox-source-docs.mozilla.org/', None)}
|
||||
|
Loading…
Reference in New Issue
Block a user