forked from bmwcarit/ramses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
41 lines (33 loc) · 976 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
30
31
32
33
34
35
36
37
38
39
40
41
# -------------------------------------------------------------------------
# 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:test-py-fw]
deps =
pytest==6.2.0
future==0.18.2
Pillow==5.1.0
changedir = scripts/integration_tests
commands =
python -m pytest --import-mode=append {posargs} framework-self-tests
allowlist_externals =
pytest
[testenv:lint]
deps =
flake8
flake8-quotes
commands =
flake8 --statistics \
{toxinidir}/scripts
allowlist_externals =
flake8
[flake8]
ignore = Q000, W504
max-line-length = 160