Change-Id: I1fe5f49072541d3eed83f2477c685aa24ff574ce
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/3344
Tested-by: gerrit-photon <photon-checkins@vmware.com>
Reviewed-by: Xiaolin Li <xiaolinl@vmware.com>
| ... | ... |
@@ -4,7 +4,7 @@ |
| 4 | 4 |
Summary: A powerful, sanity-friendly HTTP client for Python. |
| 5 | 5 |
Name: python-urllib3 |
| 6 | 6 |
Version: 1.20 |
| 7 |
-Release: 3%{?dist}
|
|
| 7 |
+Release: 4%{?dist}
|
|
| 8 | 8 |
Url: https://pypi.python.org/pypi/urllib3 |
| 9 | 9 |
License: MIT |
| 10 | 10 |
Group: Development/Languages/Python |
| ... | ... |
@@ -17,6 +17,10 @@ BuildRequires: python2 |
| 17 | 17 |
BuildRequires: python2-libs |
| 18 | 18 |
BuildRequires: python2-devel |
| 19 | 19 |
BuildRequires: python-setuptools |
| 20 |
+%if %{with_check}
|
|
| 21 |
+BuildRequires: python-pytest |
|
| 22 |
+BuildRequires: python-psutil |
|
| 23 |
+%endif |
|
| 20 | 24 |
|
| 21 | 25 |
Requires: python2 |
| 22 | 26 |
Requires: python2-libs |
| ... | ... |
@@ -33,6 +37,10 @@ BuildRequires: python3-devel |
| 33 | 33 |
BuildRequires: python3-libs |
| 34 | 34 |
BuildRequires: python3-setuptools |
| 35 | 35 |
BuildRequires: python3-xml |
| 36 |
+%if %{with_check}
|
|
| 37 |
+BuildRequires: python3-pytest |
|
| 38 |
+BuildRequires: python3-psutil |
|
| 39 |
+%endif |
|
| 36 | 40 |
Requires: python3 |
| 37 | 41 |
Requires: python3-libs |
| 38 | 42 |
|
| ... | ... |
@@ -41,6 +49,8 @@ Python 3 version. |
| 41 | 41 |
|
| 42 | 42 |
%prep |
| 43 | 43 |
%setup -q -n urllib3-%{version}
|
| 44 |
+# Dummyserver tests are failing when running in chroot. So disabling the tests. |
|
| 45 |
+rm -rf test/with_dummyserver/ |
|
| 44 | 46 |
|
| 45 | 47 |
%build |
| 46 | 48 |
python2 setup.py build |
| ... | ... |
@@ -51,8 +61,19 @@ python2 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
| 51 | 51 |
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
| 52 | 52 |
|
| 53 | 53 |
%check |
| 54 |
-python2 setup.py test |
|
| 55 |
-python3 setup.py test |
|
| 54 |
+easy_install_2=$(ls /usr/bin |grep easy_install |grep 2) |
|
| 55 |
+$easy_install_2 mock |
|
| 56 |
+$easy_install_2 PySocks |
|
| 57 |
+$easy_install_2 nose |
|
| 58 |
+$easy_install_2 tornado |
|
| 59 |
+PYTHONPATH=./ py.test2 |
|
| 60 |
+ |
|
| 61 |
+easy_install_3=$(ls /usr/bin |grep easy_install |grep 3) |
|
| 62 |
+$easy_install_3 mock |
|
| 63 |
+$easy_install_3 PySocks |
|
| 64 |
+$easy_install_3 nose |
|
| 65 |
+$easy_install_3 tornado |
|
| 66 |
+PYTHONPATH=./ py.test3 |
|
| 56 | 67 |
|
| 57 | 68 |
%files |
| 58 | 69 |
%defattr(-,root,root) |
| ... | ... |
@@ -63,6 +84,8 @@ python3 setup.py test |
| 63 | 63 |
%{python3_sitelib}/*
|
| 64 | 64 |
|
| 65 | 65 |
%changelog |
| 66 |
+* Wed Jul 26 2017 Divya Thaluru <dthaluru@vmware.com> 1.20-4 |
|
| 67 |
+- Fixed rpm check errors |
|
| 66 | 68 |
* Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.20-3 |
| 67 | 69 |
- Add python3-setuptools and python3-xml to python3 sub package Buildrequires. |
| 68 | 70 |
* Thu Jun 01 2017 Dheeraj Shetty <dheerajs@vmware.com> 1.20-2 |