44a0458cc74ceb579876d1e765e05deedd43434f
[testsuite/pythonsdk-tests.git] / setup.cfg
1 # SPDX-License-Identifier: Apache-2.0
2 [metadata]
3 name = onaptests
4 version = 0.0.1
5 description = Test SDK to use ONAP Programatically
6 long_description = file: README.md
7 url = https://git.onap.org/testsuite/pythonsdk-tests
8 author = Orange OpenSource
9 license = Apache 2.0
10 classifiers =
11   Programming Language :: Python :: 3
12   Programming Language :: Python :: 3.7
13   Programming Language :: Python :: 3.8
14
15 [options]
16 zip_safe = False
17 include_package_data = True
18 python_requires = >=3.7,<4
19 package_dir=
20     =src
21 packages=find_namespace:
22 setup_requires =
23   pytest-runner==5.2
24 tests_require =
25   mock
26   pytest
27   pytest-cov
28   pytest-mock
29   requests-mock
30
31 [options.packages.find]
32 where=src
33
34 [aliases]
35 test=pytest
36
37 [tool:pytest]
38 addopts =
39   --verbose --doctest-modules --junitxml=pytest-unit.xml
40   --cov-report term-missing --cov-report xml --cov-report html
41   --cov=src  --maxfail=1
42
43 testpaths = tests
44
45 [entry_points]
46 xtesting.testcase =
47   basic_vm = onaptests.scenario.basic_vm:BasicVm
48   basic_network = onaptests.scenario.basic_network:BasicNetwork
49   clearwater_ims = onaptests.scenario.clearwater_ims:ClearwaterIms