Enabled and fixed pylint for python3 in travis
This commit is contained in:
parent
3b625c28f9
commit
e73ad54d18
35
.travis.yml
35
.travis.yml
|
@ -57,24 +57,23 @@ matrix:
|
||||||
- shopt -s globstar
|
- shopt -s globstar
|
||||||
- pylint --disable=R,C --rcfile=PythonAPI/.pylintrc PythonAPI/**/*.py Util/BuildTools/*.py
|
- pylint --disable=R,C --rcfile=PythonAPI/.pylintrc PythonAPI/**/*.py Util/BuildTools/*.py
|
||||||
|
|
||||||
# Commented until astroid can be downgraded to 2.2.5
|
- env: TEST="Pylint 3"
|
||||||
# - env: TEST="Pylint 3"
|
addons:
|
||||||
# addons:
|
apt:
|
||||||
# apt:
|
packages:
|
||||||
# packages:
|
- python3
|
||||||
# - python3
|
- python3-pip
|
||||||
# - python3-pip
|
install:
|
||||||
# install:
|
- pip3 install -q --user setuptools
|
||||||
# - pip3 install -q --user setuptools
|
- pip3 install -q astroid==2.2.5 pylint==2.3.1
|
||||||
# - pip3 install -q pylint
|
- pip3 install -q --user -r PythonAPI/carla/requirements.txt
|
||||||
# - pip3 install -q --user -r PythonAPI/carla/requirements.txt
|
- pip3 install -q --user -r PythonAPI/examples/requirements.txt
|
||||||
# - pip3 install -q --user -r PythonAPI/examples/requirements.txt
|
- pip3 install -q --user -r PythonAPI/test/requirements.txt
|
||||||
# - pip3 install -q --user -r PythonAPI/test/requirements.txt
|
- pip3 install -q --user -r PythonAPI/util/requirements.txt
|
||||||
# - pip3 install -q --user -r PythonAPI/util/requirements.txt
|
- pip3 install -q --user -r Util/Docker/requirements.txt
|
||||||
# - pip3 install -q --user -r Util/Docker/requirements.txt
|
script:
|
||||||
# script:
|
- shopt -s globstar
|
||||||
# - shopt -s globstar
|
- pylint --disable=R,C --rcfile=PythonAPI/.pylintrc PythonAPI/**/*.py Util/Docker/*.py Util/BuildTools/*.py
|
||||||
# - pylint --disable=R,C --rcfile=PythonAPI/.pylintrc PythonAPI/**/*.py Util/Docker/*.py Util/BuildTools/*.py
|
|
||||||
|
|
||||||
- env: TEST="MkDocs"
|
- env: TEST="MkDocs"
|
||||||
install:
|
install:
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
## Latest
|
## Latest
|
||||||
|
* Now all the camera-based sensors are provided with an additional parametrized lens distortion shader
|
||||||
|
* Updated manual_control.py with a lens disortion effect example
|
||||||
|
* Exposed rgb camera attributes: exposure, depth of field, tonemapper, color correction, and chromatic aberration
|
||||||
|
* Fixed pylint for python3 in travis
|
||||||
* Better steering in manual control
|
* Better steering in manual control
|
||||||
* Added Doxygen documentation online with automatic updates through Jenkins pipeline
|
* Added Doxygen documentation online with automatic updates through Jenkins pipeline
|
||||||
* Fixed client_bounding_boxes.py example script
|
* Fixed client_bounding_boxes.py example script
|
||||||
|
|
Loading…
Reference in New Issue