SHA256
1
0
forked from pool/python-isort

Accepting request 880603 from home:bnavigator:branches:devel:languages:python

- Don't test requirementslib on python39. Isort calls it a
  "deprecated finder" anyway. Colorama needs to be pulled in
  seperately then. gh#sarugaku/requirementslib#288

OBS-URL: https://build.opensuse.org/request/show/880603
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isort?expand=0&rev=78
This commit is contained in:
Benjamin Greiner 2021-03-22 21:34:44 +00:00 committed by Git OBS Bridge
parent 6c4930b348
commit 266c5c74b3
2 changed files with 21 additions and 8 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Mar 22 21:09:24 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Don't test requirementslib on python39. Isort calls it a
"deprecated finder" anyway. Colorama needs to be pulled in
seperately then. gh#sarugaku/requirementslib#288
-------------------------------------------------------------------
Sun Mar 21 18:33:47 UTC 2021 - Ben Greiner <code@bnavigator.de>

View File

@ -49,17 +49,18 @@ Suggests: git
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module black}
BuildRequires: %{python_module colorama >= 0.4.3}
BuildRequires: %{python_module hypothesis-auto}
BuildRequires: %{python_module hypothesmith}
BuildRequires: %{python_module libcst}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module pip-api}
BuildRequires: %{python_module pipreqs}
BuildRequires: %{python_module poetry}
BuildRequires: %{python_module pylama}
BuildRequires: %{python_module pytest > 6.0}
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module requirementslib >= 1.5}
# requirementslib not ready for python 3.9 yet -- gh#sarugaku/requirementslib#288
BuildRequires: %{python_module requirementslib >= 1.5 if %python-base < 3.9}
BuildRequires: git
%endif
%python_subpackages
@ -90,6 +91,15 @@ chmod -x LICENSE
%if %{with test}
%check
# test_projects_using_isort.py: these tests try to clone from online git repositories.
ignoretests="--ignore tests/integration/test_projects_using_isort.py"
# test_setting_combinations.py::test_isort_is_idempotent
# is flaky https://github.com/PyCQA/isort/issues/1466
donttest="(test_setting_combinations and test_isort_is_idempotent)"
# requirementslib is not available yet for python39
# https://github.com/sarugaku/requirementslib/issues/288
python39_donttest=" or (test_deprecated_finders and test_pipfile_finder)"
ORIGPATH=$PATH
%{python_expand # install isort and required example projects into custom root
mkdir isort-test-%{$python_bin_suffix}
@ -110,15 +120,11 @@ for proj in build/isort-%{version}-py3-none-any.whl ./example_shared_isort_profi
${proj}
done
# test_projects_using_isort.py: these tests try to clone from
# online git repositories.
# test_setting_combinations.py::test_isort_is_idempotent
# is flaky https://github.com/PyCQA/isort/issues/1466
pytest-%{$python_bin_suffix} -v \
-W "ignore::UserWarning" \
-W "ignore::DeprecationWarning" \
--ignore tests/integration/test_projects_using_isort.py \
-k "not (test_setting_combinations and test_isort_is_idempotent)"
${ignoretests} \
-k "not (${donttest} ${$python_donttest})"
}
%endif