aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
blob: 5b3c6bfb6cb72467599b9729a878a818f41dc3c0 (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
49
50
51
52
53
54
55
56
57
# 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
  basic_vm_macro = onaptests.scenario.basic_vm_macro:BasicVmMacro
  basic_vm_macro_stability = onaptests.scenario.basic_vm_macro_stability:BasicVmMacroStability
  basic_network = onaptests.scenario.basic_network:BasicNetwork
  basic_cnf = onaptests.scenario.basic_cnf:BasicCnf
  basic_cds =  onaptests.scenario.cds_blueprint_enrichment:CDSBlueprintEnrichment
  clearwater_ims = onaptests.scenario.clearwater_ims:ClearwaterIms
  basic_onboard = onaptests.scenario.basic_onboard:BasicOnboard
  pnf_macro = onaptests.scenario.pnf_macro:PnfMacro
  basic_clamp = onaptests.scenario.basic_clamp:BasicClamp
  cds_resource_resolution = onaptests.scenario.cds_resource_resolution:CDSResourceResolution