File tree Expand file tree Collapse file tree 6 files changed +17
-14
lines changed Expand file tree Collapse file tree 6 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 1
1
- repo : https://github.com/pre-commit/mirrors-autopep8
2
- rev : v1.5.2
2
+ rev : v1.5.4
3
3
hooks :
4
4
- id : autopep8
5
5
args : ["-a", "-i"]
9
9
- id : isort
10
10
args : ["-rc", "."]
11
11
- repo : https://github.com/pre-commit/mirrors-mypy
12
- rev : ' v0.770 '
12
+ rev : ' v0.782 '
13
13
hooks :
14
14
- id : mypy
15
15
entry : mypy appium/ test/
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ dist: xenial
4
4
python :
5
5
- " 3.7"
6
6
- " 3.8"
7
+ - " 3.9-dev"
7
8
8
9
install :
9
10
- pip install tox-travis
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ autopep8: ## Run autopep8
15
15
16
16
.PHONY : pylint
17
17
pylint : # # Run pylint
18
- python -m pylint $(ARGS ) --rcfile .pylintrc appium test
18
+ # TODO Remove --disable=E1136 when no errors in py39
19
+ python -m pylint $(ARGS) --rcfile .pylintrc appium test --disable=E1136
19
20
20
21
.PHONY : mypy
21
22
mypy : # # Run mypy
Original file line number Diff line number Diff line change @@ -4,25 +4,25 @@ url = "https://pypi.org/simple"
4
4
verify_ssl = true
5
5
6
6
[dev-packages ]
7
- pre-commit = " ~=2.1 "
7
+ pre-commit = " ~=2.6 "
8
8
9
9
[packages ]
10
10
selenium = " ~=3.141"
11
11
12
12
autopep8 = " ~=1.5"
13
13
14
- pytest = " ~=5.3 "
15
- pytest-cov = " ~=2.8 "
14
+ pytest = " ~=6.0 "
15
+ pytest-cov = " ~=2.10 "
16
16
17
- tox = " ~=3.14 "
17
+ tox = " ~=3.19 "
18
18
tox-travis = " ~=0.12"
19
19
20
- httpretty = " ~=0.9 "
20
+ httpretty = " ~=1.0 "
21
21
python-dateutil = " ~=2.8"
22
22
mock = " ~=4.0"
23
23
24
- pylint = " ~=2.4 "
25
- astroid = " ~=2.3 "
26
- isort = " ~=4.3"
24
+ pylint = " ~=2.5 "
25
+ astroid = " ~=2.4 "
26
+ isort = " ~=4.3" # TODO Can be 5> when pylint uses isort 5>
27
27
28
- mypy = " ==0.761 "
28
+ mypy = " ==0.782 "
Original file line number Diff line number Diff line change 1
- [pep8 ]
1
+ [pycodestyle ]
2
2
max-line-length = 120
3
3
4
4
[isort]
Original file line number Diff line number Diff line change 2
2
skipsdist = True
3
3
envlist =
4
4
py37,
5
- py38
5
+ py38,
6
+ py39-dev
6
7
7
8
[testenv]
8
9
deps =
You can’t perform that action at this time.
0 commit comments