blob: c8056a30958b94fdbe199fb12092c6be51029e80 (
plain)
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
42
43
44
45
46
47
48
|
# SPDX-License-Identifier: Apache-2.0
[metadata]
name = onaptests
version = 0.0.1
description = Test SDK to use ONAP Programatically
long_description = file: README.md
url = https://git.onap.org/testsuite/pythonsdk-tests
author = Orange OpenSource
license = Apache 2.0
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = False
include_package_data = True
python_requires = >=3.7,<4
package_dir=
=src
packages=find_namespace:
setup_requires =
pytest-runner==5.2
tests_require =
mock
pytest
pytest-cov
pytest-mock
requests-mock
[options.packages.find]
where=src
[aliases]
test=pytest
[tool:pytest]
addopts =
--verbose --doctest-modules --junitxml=pytest-unit.xml
--cov-report term-missing --cov-report xml --cov-report html
--cov=src --maxfail=1
testpaths = tests
[entry_points]
xtesting.testcase =
basic_vm = onaptests.scenario.basic_vm:BasicVm
clearwater_ims = onaptests.scenario.clearwater_ims:ClearwaterIms
|