forked from bmwcarit/ramses-logic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
29 lines (24 loc) · 767 Bytes
/
tox.ini
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
# -------------------------------------------------------------------------
# Copyright (C) 2020 BMW AG
# -------------------------------------------------------------------------
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
# -------------------------------------------------------------------------
[tox]
skipsdist = True
basepython = py36
skip_install = true
[testenv:lint]
deps =
flake8
flake8-quotes
commands =
flake8 --statistics \
{toxinidir}/ci/scripts \
{toxinidir}/ci/oss
allowlist_externals =
flake8
[flake8]
ignore = Q000, W504
max-line-length = 160