blob: 8389ad10bf95aaaaaae134c9fd0ba4230f3029a6 [file] [log] [blame]
Joey Armstrongc8d70632024-06-27 15:25:38 -04001; Copyright 2019-2024 Open Networking Foundation ONF Contributors
Zack Williams52209662019-02-07 10:15:31 -07002;
3; Licensed under the Apache License, Version 2.0 (the "License");
4; you may not use this file except in compliance with the License.
5; You may obtain a copy of the License at
6;
7; http://www.apache.org/licenses/LICENSE-2.0
8;
9; Unless required by applicable law or agreed to in writing, software
10; distributed under the License is distributed on an "AS IS" BASIS,
11; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12; See the License for the specific language governing permissions and
13; limitations under the License.
Joey Armstrongc8d70632024-06-27 15:25:38 -040014; -----------------------------------------------------------------------
15; SPDX-FileCopyrightText: 2010-2024 the Open Networking Foundation Contributors
16; SPDX-License-Identifier: Apache-2.0
17; -----------------------------------------------------------------------
Zack Williams52209662019-02-07 10:15:31 -070018
19[tox]
Joey Armstrongc8d70632024-06-27 15:25:38 -040020envlist = py36,py37,py38,3.10.6
Zack Williams52209662019-02-07 10:15:31 -070021skip_missing_interpreters = true
22
23[testenv]
24deps =
25 nose2
26
27commands =
28 nose2 -c tox.ini --verbose --junit-xml
29
30[flake8]
31max-line-length = 119
32
33[unittest]
34plugins=nose2.plugins.junitxml
35
36[junit-xml]
37path=nose2-results.xml
38
39[coverage]
40always-on = True
41coverage =
42 python
43coverage-report =
44 xml
45 term
Joey Armstrong6a6c6292024-04-30 16:07:38 -040046
47; [SEE ALSO]
48; https://tox.wiki/en/latest/cli_interface.html
49; https://docs.nose2.io/en/latest/usage.html
50
51; [EOF]