X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=tox.ini;h=167f9e99db0e390dfc119b81ad7bb61eb7eadf23;hb=e9795318c10224753ef70ac4071ee88283a9dd12;hp=9c52bdba2ccdc5385d566c68b6bc9f14ddd07ac6;hpb=61bec7d215cbddfaa17db6d4974676e406a6480c;p=osm%2FPOL.git diff --git a/tox.ini b/tox.ini index 9c52bdb..167f9e9 100644 --- a/tox.ini +++ b/tox.ini @@ -23,17 +23,19 @@ toxworkdir = /tmp/.tox [testenv] usedevelop = True -basepython = python3 +basepython = python3.8 setenv = VIRTUAL_ENV={envdir} PYTHONDONTWRITEBYTECODE = 1 deps = -r{toxinidir}/requirements.txt +parallel_show_output = true ####################################################################################### [testenv:black] deps = black skip_install = true commands = - - black --check --diff osm_policy_module/ + black --check --diff osm_policy_module/ + black --check --diff setup.py ####################################################################################### @@ -48,12 +50,12 @@ commands = coverage report --omit='*tests*' coverage html -d ./cover --omit='*tests*' coverage xml -o coverage.xml --omit=*tests* -whitelist_externals = sh +allowlist_externals = sh ####################################################################################### [testenv:flake8] -deps = flake8 +deps = flake8==5.0.4 commands = flake8 osm_policy_module/ setup.py @@ -65,7 +67,7 @@ deps = {[testenv]deps} -r{toxinidir}/requirements-test.txt pylint commands = - pylint -E osm_policy_module + - pylint -E osm_policy_module ####################################################################################### @@ -81,13 +83,18 @@ commands = ####################################################################################### [testenv:pip-compile] -deps = pip-tools==5.5.0 +deps = pip-tools==6.6.2 +skip_install = true +allowlist_externals = bash + [ commands = - - sh -c 'for file in requirements*.in ; do pip-compile -rU --no-header $file ;\ - out=`echo $file | sed "s/.in/.txt/"` ; \ - head -16 tox.ini >> $out ;\ - done' -whitelist_externals = sh + - bash -c "for file in requirements*.in ; do \ + UNSAFE="" ; \ + if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \ + pip-compile -rU --no-header $UNSAFE $file ;\ + out=`echo $file | sed 's/.in/.txt/'` ; \ + sed -i -e '1 e head -16 tox.ini' $out ;\ + done" ####################################################################################### @@ -102,13 +109,14 @@ commands = python3 setup.py --command-packages=stdeb.command sdist_dsc sh -c 'cd deb_dist/osm-policy-module*/ && dpkg-buildpackage -rfakeroot -uc -us' sh -c 'rm osm_policy_module/requirements.txt' -whitelist_externals = sh +allowlist_externals = sh ####################################################################################### [flake8] ignore = W291, W293, + W503, E123, E125, E226,