Fix for SDC v2 distribution check
[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.11
13
14 [options]
15 zip_safe = False
16 include_package_data = True
17 python_requires = >=3.11,<4
18 package_dir=
19     =src
20 packages=find_namespace:
21 setup_requires =
22   pytest-runner==5.2
23 install_requires =
24   pg8000==1.30.1
25   mysql-connector-python==8.3.0
26 tests_require =
27   mock
28   pytest
29   pytest-cov
30   pytest-mock
31   requests-mock
32
33 [options.packages.find]
34 where=src
35
36 [aliases]
37 test=pytest
38
39 [tool:pytest]
40 addopts =
41   --verbose --doctest-modules --junitxml=pytest-unit.xml
42   --cov-report term-missing --cov-report xml --cov-report html
43   --cov=src  --maxfail=1
44
45 testpaths = tests
46
47 [entry_points]
48 xtesting.testcase =
49   basic_vm = onaptests.scenario.basic_vm:BasicVm
50   basic_vm_macro = onaptests.scenario.basic_vm_macro:BasicVmMacro
51   basic_vm_macro_stability = onaptests.scenario.basic_vm_macro_stability:BasicVmMacroStability
52   basic_network = onaptests.scenario.basic_network:BasicNetwork
53   basic_cnf = onaptests.scenario.basic_cnf:BasicCnf
54   basic_cds =  onaptests.scenario.basic_cds:CDSBlueprintEnrichment
55   clearwater_ims = onaptests.scenario.clearwater_ims:ClearwaterIms
56   basic_onboard = onaptests.scenario.basic_onboard:BasicOnboard
57   pnf_macro = onaptests.scenario.pnf_macro:PnfMacro
58   cds_resource_resolution = onaptests.scenario.cds_resource_resolution:CDSResourceResolution
59   multi_vnf_macro = onaptests.scenario.multi_vnf_macro:MultiVnfUbuntuMacro
60   basic_cnf_macro = onaptests.scenario.basic_cnf_macro:BasicCnfMacro
61   basic_cps = onaptests.scenario.basic_cps:BasicCps
62   status = onaptests.scenario.status:Status
63   basic_sdnc = onaptests.scenario.basic_sdnc:BasicSdnc