blob: 44b7b032c74009d3147d8380a115917bc553871e [file] [log] [blame]
Zack Williams7f87d3e2020-06-05 12:36:39 -07001; SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
2; SPDX-License-Identifier: Apache-2.0
3
4[tox]
Joey Armstrongab483222023-11-28 12:41:12 -05005envlist = py37,py310
Zack Williams7f87d3e2020-06-05 12:36:39 -07006skip_missing_interpreters = true
7
8[testenv]
9deps =
10 reuse
11 flake8
12 pylint
13 coverage
14
15commands=
16# reuse
17 flake8 cggs.py
Joey Armstrongab483222023-11-28 12:41:12 -050018# pylint --py3k cggs.py
Zack Williams7f87d3e2020-06-05 12:36:39 -070019
20[flake8]
21max-line-length = 119