52 lines
1.4 KiB
INI
52 lines
1.4 KiB
INI
[metadata]
|
|
# This includes the license file in the wheel.
|
|
license_file = LICENSE
|
|
|
|
[tool:pytest]
|
|
# Deterministic ordering for tests; useful for pytest-xdist.
|
|
env =
|
|
PYTHONHASHSEED=0
|
|
filterwarnings =
|
|
# Tensorboard warnings
|
|
ignore::DeprecationWarning:tensorboard
|
|
# Gym warnings
|
|
ignore:Parameters to load are deprecated.:DeprecationWarning
|
|
ignore:the imp module is deprecated in favour of importlib:PendingDeprecationWarning
|
|
ignore::UserWarning:gym
|
|
|
|
[pytype]
|
|
inputs = sb3_contrib
|
|
|
|
[flake8]
|
|
ignore = W503,W504,E203,E231 # line breaks before and after binary operators
|
|
# Ignore import not used when aliases are defined
|
|
per-file-ignores =
|
|
./sb3_contrib/__init__.py:F401
|
|
./sb3_contrib/ppo_mask/__init__.py:F401
|
|
./sb3_contrib/qrdqn/__init__.py:F401
|
|
./sb3_contrib/tqc/__init__.py:F401
|
|
./sb3_contrib/trpo/__init__.py:F401
|
|
./sb3_contrib/common/vec_env/wrappers/__init__.py:F401
|
|
./sb3_contrib/common/wrappers/__init__.py:F401
|
|
./sb3_contrib/common/envs/__init__.py:F401
|
|
exclude =
|
|
# No need to traverse our git directory
|
|
.git,
|
|
# There's no value in checking cache directories
|
|
__pycache__,
|
|
# Don't check the doc
|
|
docs/
|
|
# This contains our built documentation
|
|
build,
|
|
# This contains builds of flake8 that we don't want to check
|
|
dist
|
|
*.egg-info
|
|
max-complexity = 15
|
|
# The GitHub editor is 127 chars wide
|
|
max-line-length = 127
|
|
|
|
[isort]
|
|
profile = black
|
|
line_length = 127
|
|
src_paths = sb3_contrib
|