Skip to content

Commit

Permalink
Switch to stestr
Browse files Browse the repository at this point in the history
According to Openstack summit session [1],
stestr is maintained project to which all Openstack projects should migrate.
Let's switch to stestr as other projects have already moved to it.

[1] https://etherpad.openstack.org/p/YVR-python-pti

Change-Id: I753f32ecf3275cf49d8c93bf648a6a26bc6da8e7
  • Loading branch information
Vu Cong Tuan committed Jul 4, 2018
1 parent 0b9a943 commit a9d728b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 13 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Expand Up @@ -25,8 +25,7 @@ pip-log.txt
.coverage
cover
.tox
nosetests.xml
.testrepository
.stestr

# Translations
*.mo
Expand Down
3 changes: 3 additions & 0 deletions .stestr.conf
@@ -0,0 +1,3 @@
[DEFAULT]
test_path=./oslo_concurrency/tests/unit
top_path=./
7 changes: 0 additions & 7 deletions .testr.conf

This file was deleted.

2 changes: 1 addition & 1 deletion lower-constraints.txt
Expand Up @@ -54,7 +54,7 @@ snowballstemmer==1.2.1
Sphinx==1.6.2
sphinxcontrib-websupport==1.0.1
stevedore==1.20.0
testrepository==0.0.18
stestr==2.0.0
testtools==2.2.0
traceback2==1.4.0
unittest2==1.1.0
Expand Down
2 changes: 1 addition & 1 deletion oslo_concurrency/lockutils.py
Expand Up @@ -348,7 +348,7 @@ def _lock_wrapper(argv):
lockutils-wrapper
If you run this:
lockutils-wrapper python setup.py testr <etc>
lockutils-wrapper stestr run <etc>
a temporary directory will be created for all your locks and passed to all
your tests in an environment variable. The temporary dir will be deleted
Expand Down
1 change: 1 addition & 0 deletions test-requirements.txt
Expand Up @@ -7,6 +7,7 @@ oslotest>=3.2.0 # Apache-2.0
coverage!=4.4,>=4.0 # Apache-2.0
futures>=3.0.0;python_version=='2.7' or python_version=='2.6' # BSD
fixtures>=3.0.0 # Apache-2.0/BSD
stestr>=2.0.0 # Apache-2.0

# These are needed for docs generation
openstackdocstheme>=1.18.1 # Apache-2.0
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -10,8 +10,8 @@ deps =
-r{toxinidir}/requirements.txt
# We want to support both vanilla stdlib and eventlet monkey patched
commands =
lockutils-wrapper python setup.py testr --slowest --testr-args='{posargs}'
env TEST_EVENTLET=1 lockutils-wrapper python setup.py testr --slowest --testr-args='{posargs}'
lockutils-wrapper stestr run --slowest {posargs}
env TEST_EVENTLET=1 lockutils-wrapper stestr run --slowest {posargs}

[testenv:py27]
basepython = python2.7
Expand Down

0 comments on commit a9d728b

Please sign in to comment.