forked from pool/python-jenkinsapi
Accepting request 794604 from home:pgajdos:python
- version update to 0.3.11 0.3.11 ------ * jobs.py: don't yield jobs twice (#740) * Add debug log message in JenkinsBase.process\_job\_folder to follow execution progress (#738) * don't faile when node\_descriprion is missing (#737) * Fix safe exit test (#736) * don't stale feature requests or "help wanted" * change label for stale issues * Fixed idle state not being refreshed (#575) * Simple plugins (#735) 0.3.10 ------ * Add method for streaming build logs (#722) * add instructions for Stale bot * Fixed problems with changeSets (#717) * Create Node by providing predetermined configuration (#730) * Fix plugin versions (#734) * Updates Requester to use a Session, maintaining cookies (#727) * Feature/multibranch pipeline job (#715) * Fix failures caused by plugins (#718) * Fix for build.get\_artifacts() (#712) * Add safe exit (#700) * simplify crumb usage (#704) * generate new api token for logged in user (#706) * ignore dot files (#705) OBS-URL: https://build.opensuse.org/request/show/794604 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jenkinsapi?expand=0&rev=15
This commit is contained in:
parent
debd6eaab0
commit
93c7d9a0ff
3
jenkinsapi-0.3.11.tar.gz
Normal file
3
jenkinsapi-0.3.11.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a212a244b0a6022a61657746c8120ac9b6db83432371b345154075eb8faceb61
|
||||
size 143830
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bf35b208fe05e65508f3b8bbb0f91d164b007632e27ebe5f54041174b681b696
|
||||
size 138872
|
@ -1,3 +1,33 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 16 12:13:33 UTC 2020 - pgajdos@suse.com
|
||||
|
||||
- version update to 0.3.11
|
||||
0.3.11
|
||||
------
|
||||
* jobs.py: don't yield jobs twice (#740)
|
||||
* Add debug log message in JenkinsBase.process\_job\_folder to follow execution progress (#738)
|
||||
* don't faile when node\_descriprion is missing (#737)
|
||||
* Fix safe exit test (#736)
|
||||
* don't stale feature requests or "help wanted"
|
||||
* change label for stale issues
|
||||
* Fixed idle state not being refreshed (#575)
|
||||
* Simple plugins (#735)
|
||||
0.3.10
|
||||
------
|
||||
* Add method for streaming build logs (#722)
|
||||
* add instructions for Stale bot
|
||||
* Fixed problems with changeSets (#717)
|
||||
* Create Node by providing predetermined configuration (#730)
|
||||
* Fix plugin versions (#734)
|
||||
* Updates Requester to use a Session, maintaining cookies (#727)
|
||||
* Feature/multibranch pipeline job (#715)
|
||||
* Fix failures caused by plugins (#718)
|
||||
* Fix for build.get\_artifacts() (#712)
|
||||
* Add safe exit (#700)
|
||||
* simplify crumb usage (#704)
|
||||
* generate new api token for logged in user (#706)
|
||||
* ignore dot files (#705)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 17 20:23:07 UTC 2019 - Hardik Italia <hitalia@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-jenkinsapi
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,13 +18,13 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-jenkinsapi
|
||||
Version: 0.3.9
|
||||
Version: 0.3.11
|
||||
Release: 0
|
||||
Summary: A Python API for accessing resources on a Jenkins continuous integration server
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
Url: https://github.com/salimfadhley/jenkinsapi
|
||||
Source: https://pypi.io/packages/source/j/jenkinsapi/jenkinsapi-%{version}.tar.gz
|
||||
URL: https://github.com/salimfadhley/jenkinsapi
|
||||
Source: https://files.pythonhosted.org/packages/source/j/jenkinsapi/jenkinsapi-%{version}.tar.gz
|
||||
BuildRequires: %{python_module pbr}
|
||||
BuildRequires: %{python_module pytz}
|
||||
BuildRequires: %{python_module requests}
|
||||
@ -33,7 +33,15 @@ BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-pytz >= 2014.4
|
||||
Requires: python-requests >= 2.3.0
|
||||
Requires: python-six >= 1.10.0
|
||||
BuildArch: noarch
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module astroid >= 1.4.8}
|
||||
BuildRequires: %{python_module mock}
|
||||
BuildRequires: %{python_module pytest-mock}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module requests-kerberos}
|
||||
# /SECTION
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@ -78,8 +86,14 @@ and has
|
||||
%postun
|
||||
%python_uninstall_alternative jenkins_invoke
|
||||
|
||||
%check
|
||||
# E fixture '_view_poll' not found
|
||||
rm jenkinsapi_tests/unittests/test_view.py
|
||||
# E ConnectionError: HTTPSConnectionPool(host='updates.jenkins.io...
|
||||
rm jenkinsapi_tests/unittests/test_plugins.py
|
||||
%pytest jenkinsapi_tests/unittests jenkinsapi_tests/test_utils
|
||||
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.rst
|
||||
%license license.txt
|
||||
%python_alternative %{_bindir}/jenkins_invoke
|
||||
|
Loading…
x
Reference in New Issue
Block a user