Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 1 | ; Copyright 2017 the original author or authors. |
| 2 | ; |
| 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. |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 14 | |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 15 | [tox] |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 16 | envlist = py27 |
Chip Boling | ce2daf6 | 2019-02-12 13:53:39 -0600 | [diff] [blame] | 17 | |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 18 | [testenv] |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 19 | commands = |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 20 | nosetests -c tox.ini |
Chip Boling | 67b674a | 2019-02-08 11:42:18 -0600 | [diff] [blame] | 21 | |
| 22 | deps = |
| 23 | nose |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 24 | mock |
| 25 | coverage |
William Kurkian | 16b767a | 2019-05-07 17:02:19 -0400 | [diff] [blame] | 26 | -rrequirements.txt |
Zack Williams | a95e2c8 | 2019-04-17 15:43:54 -0700 | [diff] [blame] | 27 | |
| 28 | [nosetests] |
| 29 | with-xunit=1 |
| 30 | xunit-file=nose-results.xml |
| 31 | with-coverage=1 |
| 32 | cover-xml=1 |
| 33 | cover-xml-file=coverage.xml |
| 34 | cover-package=pyvoltha |