diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-07-16 19:16:42 +0200 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-08-24 17:39:38 +0000 |
commit | f9b0c349a5c83f9278f6b115d334598201d9d7e6 (patch) | |
tree | 474e0928dda4a7fd8340f27ab72bb5bee7683fce /setup.cfg | |
parent | 9d674116f24285d68a80597202d393b74ac544ce (diff) |
First proposal for the structure for pythonsdk based scenarios
Issue-ID: TEST-240
Change-Id: Ic989b26442b868363af7b3872bff49dd70d78be0
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..d5907f2 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,41 @@ +# 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://gitlab.com/Orange-OpenSource/lfn/onap/pythonsdk-tests +author = Orange OpenSource +license = Apache 2.0 +classifiers = + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.7 + +[options] +zip_safe = False +include_package_data = True +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 |