Skip to content

Commit bfd2a7c

Browse files
committed
Updated files with git_helper.
1 parent 9ef190d commit bfd2a7c

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

tox.ini

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ commands =
4545

4646
[testenv:docs]
4747
basepython = python3.8
48-
changedir={toxinidir}/doc-source
48+
changedir = {toxinidir}/doc-source
4949
deps = -r{toxinidir}/requirements.txt
5050
-r{toxinidir}/doc-source/requirements.txt
5151
commands = sphinx-build -M html . ./build {posargs}
@@ -70,48 +70,48 @@ commands = python setup.py {posargs} sdist bdist_wheel
7070

7171
[testenv:lint]
7272
basepython = python3.6
73-
changedir={toxinidir}
74-
ignore_errors=true
73+
changedir = {toxinidir}
74+
ignore_errors = true
7575
skip_install = true
7676
deps =
7777
autopep8 >=1.5.2
7878
flake8 >=3.8.2
7979
flake8-2020 >= 1.6.0
80-
git+https://github.com/domdfcoding/flake8_strftime.git
80+
flake8_strftime
8181
commands = flake8 domdf_python_tools tests
8282

8383

8484
[testenv:yapf]
8585
basepython = python3.7
86-
changedir={toxinidir}
86+
changedir = {toxinidir}
8787
skip_install = true
88-
ignore_errors=true
88+
ignore_errors = true
8989
deps = yapf
9090
commands = yapf -i --recursive domdf_python_tools tests
9191

9292

9393
[testenv:isort]
9494
basepython = python3.6
9595
skip_install = true
96-
ignore_errors=true
97-
changedir={toxinidir}
96+
ignore_errors = true
97+
changedir = {toxinidir}
9898
deps = git+https://github.com/timothycrosley/isort.git@6ffdc23d95e27f8a3637a1b77c7049ed62222272
9999
commands = isort domdf_python_tools tests
100100

101101

102102
[testenv:mypy]
103103
basepython = python3.6
104104

105-
ignore_errors=true
106-
changedir={toxinidir}
105+
ignore_errors = true
106+
changedir = {toxinidir}
107107
deps = mypy
108108
commands = mypy domdf_python_tools tests
109109

110110

111111
[testenv:pyup]
112112
basepython = python3.6
113113

114-
ignore_errors=true
114+
ignore_errors = true
115115
changedir={toxinidir}
116116
deps = pyupgrade-directories
117117
commands = pyup_dirs domdf_python_tools tests --py36-plus --recursive
@@ -120,9 +120,9 @@ commands = pyup_dirs domdf_python_tools tests --py36-plus --recursive
120120
[testenv:qa]
121121
basepython = python3.6
122122
skip_install = True
123-
ignore_errors=true
124-
whitelist_externals=tox
125-
changedir={toxinidir}
123+
ignore_errors = true
124+
whitelist_externals = tox
125+
changedir = {toxinidir}
126126
commands = tox -e pyup,isort,yapf,mypy,lint {posargs}
127127

128128

0 commit comments

Comments
 (0)