From 7d3192cdee334c7b38a806a699d76611ee8567ce Mon Sep 17 00:00:00 2001 From: HeroicHitesh Date: Wed, 30 Jun 2021 23:41:25 +0530 Subject: Migrate from testr to stestr Replace .testr.conf by .stestr.conf for migration and update .gitignore, tox.ini and test-requirements.txt files accordingly Signed-off-by: HeroicHitesh Change-Id: I0948bd22e257285c77fb61564684ab31080ecf54 --- .gitignore | 24 +++++++++++++++++------- .stestr.conf | 3 +++ .testr.conf | 4 ---- test-requirements.txt | 2 +- tox.ini | 2 +- 5 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .stestr.conf delete mode 100644 .testr.conf diff --git a/.gitignore b/.gitignore index c68e626..a2e616b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,26 @@ -*.swp +*.log +subunit.log +.autogenerated +*.py[co] + +# Packages dist/ -.tox *.egg *.egg-info -*.py[co] .DS_Store -*.log -.testrepository -subunit.log build -.autogenerated + +# Unit test .coverage cover/ coverage.xml +.stestr +.testrepository +.tox +.venv + +# Sphinx doc/source/api/ + +# Editors +*.swp diff --git a/.stestr.conf b/.stestr.conf new file mode 100644 index 0000000..c2c8a3a --- /dev/null +++ b/.stestr.conf @@ -0,0 +1,3 @@ +[DEFAULT] +test_path=./tests/ +top_dir=./ diff --git a/.testr.conf b/.testr.conf deleted file mode 100644 index 081907d..0000000 --- a/.testr.conf +++ /dev/null @@ -1,4 +0,0 @@ -[DEFAULT] -test_command=${PYTHON:-python} -m subunit.run discover -t ./ ./tests $LISTOPT $IDOPTION -test_id_option=--load-list $IDFILE -test_list_option=--list diff --git a/test-requirements.txt b/test-requirements.txt index 3add9f4..da05f8c 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,5 +2,5 @@ hacking>=0.10.0,<0.11 coverage>=3.6 mock>=1.0 -testrepository>=0.0.17 +stestr>=2.0.0 # Apache-2.0 testtools>=0.9.32 diff --git a/tox.ini b/tox.ini index 4d84089..030f05b 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ setenv = VIRTUAL_ENV={envdir} deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt -commands = python setup.py testr --testr-args="{posargs}" +commands = stestr run --slowest {posargs} passenv = *_proxy *_PROXY [testenv:pep8] -- cgit v1.2.1