Revision 800a086c0e62d3535acf7bcd09f34853e4948492 authored by Madian Khabsa on 24 March 2021, 03:21:27 UTC, committed by Facebook GitHub Bot on 24 March 2021, 03:23:02 UTC
Summary:
Pull Request resolved: https://github.com/fairinternal/mmf-internal/pull/150

- Modifies test reporter to be fetched/registered in registry
- Add hive test reporter for internal support

Reviewed By: apsdehal

Differential Revision: D26954690

fbshipit-source-id: b8ad088d829a5353c713cb493c38f27099b43fcd
1 parent e5edc48
Raw File
pyproject.toml
[tool.isort]
# This is required to make sorting same as fbcode as all absolute imports
# are considered third party there
known_third_party = [
    "PIL", "cv2", "demjson", "fairscale", "filelock", "h5py", "lib", "lmdb", "maskrcnn_benchmark", "matplotlib",
    "mmf", "mmf_cli", "numpy", "omegaconf", "packaging", "pycocoevalcap", "pytorch_sphinx_theme",
    "recommonmark", "requests", "setuptools", "sklearn", "termcolor", "tests", "torch",
    "torchtext", "torchvision", "tqdm", "transformers", "pytorch_lightning"
]
skip_glob = "**/build/**,website/**,**/fb/**"
combine_as_imports = true
force_grid_wrap = false
include_trailing_comma = true
line_length = 88
multi_line_output = 3
use_parentheses = true
lines_after_imports = 2

[tool.black]
line-length = 88
exclude = '''
/(
    \.git
  | \.hg
  | \.mypy_cache
  | \.tox
  | \.venv
  | _build
  | buck-out
  | build
  | dist
  | website
  | .*\/fb\/.*
)/
'''
back to top