-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.cfg
48 lines (42 loc) · 1.8 KB
/
setup.cfg
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[coverage:report]
exclude_lines =
pragma: no cover
omit =
setup.py
[coverage:run]
include=
src/*
tests/*
[coverage:paths]
source =
src/aprl
*venv/lib/python*/site-packages/aprl
[flake8]
max-line-length=100
ignore = W503,E203
[isort]
known_first_party=aprl
known_third_party=baselines,gym_compete,ray,stable_baselines
force_sort_within_sections=True
force_grid_wrap=0
include_trailing_comma=True
line_length=100
multi_line_output=3
use_parentheses=True
[tool:pytest]
filterwarnings =
ignore:the imp module is deprecated in favour of importlib:DeprecationWarning:distutils
ignore:Using or importing the ABCs from 'collections':DeprecationWarning:(google|pkg_resources|tensorflow|theano)
ignore:inspect.getargspec:DeprecationWarning:tensorflow
ignore:Passing.* as a synonym of type is deprecated:FutureWarning:(tensorflow|tensorboard)
ignore:inspect.getargspec:DeprecationWarning:ray
ignore:Importing from numpy.testing:DeprecationWarning:theano
ignore:Parameters to load are deprecated:Warning:gym
ignore:The binary mode of fromstring is deprecated:DeprecationWarning:gym
ignore:.*TF Lite has moved from tf.contrib.lite to tf.lite:PendingDeprecationWarning
ignore:It appears you are loading from a file with old format. Older cloudpickle format has been replaced with zip-archived models. Consider saving the model with new format.:DeprecationWarning:stable_baselines
ignore:Loading model parameters from a list. This has been replaced with parameter dictionaries with variable names and parameters. If you are loading from a file, consider re-saving the file.:DeprecationWarning:stable_baselines
ignore:Usage of `load_running_average` is deprecated. Please use `load` or pickle instead.:DeprecationWarning:stable_baselines
[pytype]
inputs = aprl
python_version = 3.7