classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
- 'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
- 'Operating System :: OS Independent',
+ 'Operating System :: POSIX :: Linux'
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
#
[tox]
-envlist=py27
+envlist=py27,py3
[testenv]
passenv =
coverage xml --omit=".tox/*,tests/*"
coverage report --omit=".tox/*,tests/*"
#pytest tests --cov-report term-missing --cov vnfsdk_pkgtools
+
+[testenv:py27]
+basepython = python2
+
+[testenv:py3]
+basepython = python3