blob: 5acd0a1e81a5d33323ec86ce0117545c43a3fdb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
[DEFAULT]
subsuite = mozlint
skip-if = python == 2
[test_black.py]
requirements = tools/lint/python/black_requirements.txt
skip-if = os == "mac" # pip unable to find black
[test_eslint.py]
[test_flake8.py]
requirements = tools/lint/python/flake8_requirements.txt
skip-if = os == "mac" # pip unable to find 'flake8==3.5.0'
[test_file_perm.py]
skip-if = os == "win"
[test_file_whitespace.py]
[test_file_license.py]
[test_lintpref.py]
[test_shellcheck.py]
[test_rst.py]
requirements = tools/lint/rst/requirements.txt
skip-if = os == "mac" # pip unable to install
[test_codespell.py]
skip-if = os == "win" || os == "mac" # codespell installed on Linux
[test_yaml.py]
[test_clippy.py]
skip-if = os == "win" || os == "mac" # only installed on Linux
[test_rustfmt.py]
skip-if = os == "win" || os == "mac" # only installed on Linux
[test_clang_format.py]
skip-if = os == "win" || os == "mac" # only installed on Linux
[test_perfdocs.py]
[test_pylint.py]
skip-if = os == "win" || os == "mac" # only installed on linux
requirements = tools/lint/python/pylint_requirements.txt
|