<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-keystoneclient.git/tox.ini, branch 2.1.0</title>
<subtitle>opendev.org: openstack/python-keystoneclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/'/>
<entry>
<title>Merge "Deprecated tox -downloadcache option removed"</title>
<updated>2016-01-06T23:00:37+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-01-06T23:00:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=411ab2ef2d82fda170bac9b1ef74ed5706d4be77'/>
<id>411ab2ef2d82fda170bac9b1ef74ed5706d4be77</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>move hacking to tests folder</title>
<updated>2015-12-15T23:08:38+00:00</updated>
<author>
<name>Steve Martinelli</name>
<email>stevemar@ca.ibm.com</email>
</author>
<published>2015-12-15T23:04:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=59ee992256389ea1accee3e2f8446160567d1e8c'/>
<id>59ee992256389ea1accee3e2f8446160567d1e8c</id>
<content type='text'>
hacking should go under tests, no reason to pollute the top level
directory with non-keystoneclient related bits.

Change-Id: Ib4e9a3acfbab5a115c76bbc8bbf7241f42c6eac8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
hacking should go under tests, no reason to pollute the top level
directory with non-keystoneclient related bits.

Change-Id: Ib4e9a3acfbab5a115c76bbc8bbf7241f42c6eac8
</pre>
</div>
</content>
</entry>
<entry>
<title>Deprecated tox -downloadcache option removed</title>
<updated>2015-12-11T22:27:25+00:00</updated>
<author>
<name>Ondřej Nový</name>
<email>ondrej.novy@firma.seznam.cz</email>
</author>
<published>2015-12-11T22:11:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=e340caf114c10ebf2d59bafbd1473c87aff3c879'/>
<id>e340caf114c10ebf2d59bafbd1473c87aff3c879</id>
<content type='text'>
Caching is enabled by default from pip version 6.0

More info:
https://testrun.org/tox/latest/config.html#confval-downloadcache=path
https://pip.pypa.io/en/stable/reference/pip_install/#caching

Change-Id: I8524f5cd26d3c7fb76f7d727f0a2135d2b278fd2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Caching is enabled by default from pip version 6.0

More info:
https://testrun.org/tox/latest/config.html#confval-downloadcache=path
https://pip.pypa.io/en/stable/reference/pip_install/#caching

Change-Id: I8524f5cd26d3c7fb76f7d727f0a2135d2b278fd2
</pre>
</div>
</content>
</entry>
<entry>
<title>Put py34 first in the env order of tox</title>
<updated>2015-12-03T03:53:57+00:00</updated>
<author>
<name>Dave Chen</name>
<email>wei.d.chen@intel.com</email>
</author>
<published>2015-12-03T03:53:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=46e449c2baabeed7c38567f455354fdf90ec7b81'/>
<id>46e449c2baabeed7c38567f455354fdf90ec7b81</id>
<content type='text'>
To solve the problem of "db type could not be determined" on py34 we
have to run first the py34 env to, then, run py27. This patch puts py34
first on the tox.ini list of envs to avoid this problem to happen.

Change-Id: I0cc290e9fc13c8d61d933fe4b457008df0a29c5a
Closes-Bug: #1489059
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To solve the problem of "db type could not be determined" on py34 we
have to run first the py34 env to, then, run py27. This patch puts py34
first on the tox.ini list of envs to avoid this problem to happen.

Change-Id: I0cc290e9fc13c8d61d933fe4b457008df0a29c5a
Closes-Bug: #1489059
</pre>
</div>
</content>
</entry>
<entry>
<title>Delete python bytecode before every test run</title>
<updated>2015-12-02T03:53:36+00:00</updated>
<author>
<name>shu-mutou</name>
<email>shu-mutou@rf.jp.nec.com</email>
</author>
<published>2015-12-02T03:52:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=7ca83ae8e7dbb869203531c589a1c3615e5b0c01'/>
<id>7ca83ae8e7dbb869203531c589a1c3615e5b0c01</id>
<content type='text'>
Because python creates pyc files during tox runs, certain
changes in the tree, like deletes of files, or switching
branches, can create spurious errors.

Change-Id: Ib2af15b06f75b86edd4d7f7ca37695b85b12b311
Closes-Bug: #1368661
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because python creates pyc files during tox runs, certain
changes in the tree, like deletes of files, or switching
branches, can create spurious errors.

Change-Id: Ib2af15b06f75b86edd4d7f7ca37695b85b12b311
Closes-Bug: #1368661
</pre>
</div>
</content>
</entry>
<entry>
<title>Add release notes for keystoneclient</title>
<updated>2015-11-30T01:02:58+00:00</updated>
<author>
<name>Steve Martinelli</name>
<email>stevemar@ca.ibm.com</email>
</author>
<published>2015-11-29T22:25:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=aefeb160f6a55d3614b686e255d657eb8d08497f'/>
<id>aefeb160f6a55d3614b686e255d657eb8d08497f</id>
<content type='text'>
as mentioned in the mailing list, we need to include release notes
for libraries, note that we do not include changes for liberty.

Change-Id: I6497aac36720e2bea3f25316a426ea9fedb96c79
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
as mentioned in the mailing list, we need to include release notes
for libraries, note that we do not include changes for liberty.

Change-Id: I6497aac36720e2bea3f25316a426ea9fedb96c79
</pre>
</div>
</content>
</entry>
<entry>
<title>Removes py26 support</title>
<updated>2015-11-25T00:23:17+00:00</updated>
<author>
<name>David Stanek</name>
<email>dstanek@dstanek.com</email>
</author>
<published>2015-11-25T00:23:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=f4e6f12a714080a1e0391d4891d3bcf0eecfbaaf'/>
<id>f4e6f12a714080a1e0391d4891d3bcf0eecfbaaf</id>
<content type='text'>
We are removing Python 2.6 support from the Keystone libraries.

Change-Id: I1c7a79edd41a73946c9d77bfb8cd2075e2500760
Closes-Bug: 1519449
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We are removing Python 2.6 support from the Keystone libraries.

Change-Id: I1c7a79edd41a73946c9d77bfb8cd2075e2500760
Closes-Bug: 1519449
</pre>
</div>
</content>
</entry>
<entry>
<title>Add docstring validation</title>
<updated>2015-11-10T03:27:47+00:00</updated>
<author>
<name>Dolph Mathews</name>
<email>dolph.mathews@gmail.com</email>
</author>
<published>2015-10-01T16:59:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=5fa4f79e57501efa3d3d5b13a3adf18f727b0731'/>
<id>5fa4f79e57501efa3d3d5b13a3adf18f727b0731</id>
<content type='text'>
This introduces a linter for PEP257 to avoid trivial nitpicking of
docstrings in code reviews. Because flake8_docstrings simply provides a
plugin to add pep257 to flake8, you can run it via `tox -e pep8`.

PEP257 checks which we are currently violating are ignored in tox.ini.
We can remove them from the ignored list as they are fixed.

Change-Id: I01ebad7b70cf61dd80d3c06c6808d8178fbdd634
Related-Bug: 1501544
Depends-On: I60adf0dca4aa32f4ef6bca61250b375c8a3703c6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This introduces a linter for PEP257 to avoid trivial nitpicking of
docstrings in code reviews. Because flake8_docstrings simply provides a
plugin to add pep257 to flake8, you can run it via `tox -e pep8`.

PEP257 checks which we are currently violating are ignored in tox.ini.
We can remove them from the ignored list as they are fixed.

Change-Id: I01ebad7b70cf61dd80d3c06c6808d8178fbdd634
Related-Bug: 1501544
Depends-On: I60adf0dca4aa32f4ef6bca61250b375c8a3703c6
</pre>
</div>
</content>
</entry>
<entry>
<title>py34 not py33 is tested and supported</title>
<updated>2015-07-13T11:53:17+00:00</updated>
<author>
<name>Eric Brown</name>
<email>browne@vmware.com</email>
</author>
<published>2015-07-13T11:53:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=3668d9cae2f620b5414c2c181cbd3adccd95e6e9'/>
<id>3668d9cae2f620b5414c2c181cbd3adccd95e6e9</id>
<content type='text'>
The setup.cfg refers to Programming Language of Python 3.3 whereas
jenkins is setup only to test Python 3.4. This patch updates setup.cfg
and removes py33 from tox.ini.

TrivialFix

Change-Id: I1bc7fae6481c4fef71746ed1c144af37445a81ac
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The setup.cfg refers to Programming Language of Python 3.3 whereas
jenkins is setup only to test Python 3.4. This patch updates setup.cfg
and removes py33 from tox.ini.

TrivialFix

Change-Id: I1bc7fae6481c4fef71746ed1c144af37445a81ac
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "add --slowest flag to testr"</title>
<updated>2015-06-22T19:33:40+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-06-22T19:33:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-keystoneclient.git/commit/?id=d238cc9af4927d1092de207db978536d712af129'/>
<id>d238cc9af4927d1092de207db978536d712af129</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
