Merge "Update octavia-dashboard tox for stestr"
This commit is contained in:
commit
cfe793028e
3
.stestr.conf
Normal file
3
.stestr.conf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[DEFAULT]
|
||||||
|
test_path=${OS_TEST_PATH:-./octavia_dashboard/tests/}
|
||||||
|
top_dir=./
|
@ -1,7 +0,0 @@
|
|||||||
[DEFAULT]
|
|
||||||
test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \
|
|
||||||
OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \
|
|
||||||
OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} \
|
|
||||||
${PYTHON:-python} -m subunit.run discover -t ./ . $LISTOPT $IDOPTION
|
|
||||||
test_id_option=--load-list $IDFILE
|
|
||||||
test_list_option=--list
|
|
@ -4,4 +4,4 @@
|
|||||||
openstackdocstheme>=1.18.1 # Apache-2.0
|
openstackdocstheme>=1.18.1 # Apache-2.0
|
||||||
reno>=2.5.0 # Apache-2.0
|
reno>=2.5.0 # Apache-2.0
|
||||||
sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
|
sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
|
||||||
sphinxcontrib-apidoc # BSD
|
sphinxcontrib-apidoc>=0.2.1 # BSD
|
||||||
|
@ -107,6 +107,7 @@ semantic-version==2.3.1
|
|||||||
simplejson==3.5.1
|
simplejson==3.5.1
|
||||||
six==1.10.0
|
six==1.10.0
|
||||||
statsd==3.2.1
|
statsd==3.2.1
|
||||||
|
stestr==2.0.0
|
||||||
stevedore==1.20.0
|
stevedore==1.20.0
|
||||||
tenacity==3.2.1
|
tenacity==3.2.1
|
||||||
testrepository==0.0.18
|
testrepository==0.0.18
|
||||||
|
@ -140,7 +140,8 @@ module.exports = function (config) {
|
|||||||
|
|
||||||
coverageReporter: {
|
coverageReporter: {
|
||||||
type: 'html',
|
type: 'html',
|
||||||
dir: '../coverage-karma/'
|
dir: '../cover/',
|
||||||
|
subdir: '.'
|
||||||
},
|
},
|
||||||
|
|
||||||
// Coverage threshold values.
|
// Coverage threshold values.
|
||||||
|
@ -8,7 +8,7 @@ django-nose>=1.4.4 # BSD
|
|||||||
nose-exclude>=0.3.0 # LGPL
|
nose-exclude>=0.3.0 # LGPL
|
||||||
selenium>=2.50.1 # Apache-2.0
|
selenium>=2.50.1 # Apache-2.0
|
||||||
oslotest>=3.2.0 # Apache-2.0
|
oslotest>=3.2.0 # Apache-2.0
|
||||||
testrepository>=0.0.18 # Apache-2.0/BSD
|
stestr>=2.0.0 # Apache-2.0
|
||||||
testscenarios>=0.4 # Apache-2.0/BSD
|
testscenarios>=0.4 # Apache-2.0/BSD
|
||||||
testtools>=2.2.0 # MIT
|
testtools>=2.2.0 # MIT
|
||||||
# This also needs xvfb library installed on your OS
|
# This also needs xvfb library installed on your OS
|
||||||
|
6
tox.ini
6
tox.ini
@ -32,7 +32,11 @@ commands = {posargs}
|
|||||||
|
|
||||||
[testenv:cover]
|
[testenv:cover]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
commands = python setup.py test --coverage --testr-args='{posargs}'
|
# npm must be installed on the system, for example
|
||||||
|
# sudo apt-get install npm
|
||||||
|
# sudo yum install npm (on RHEL/CentOS, enable EPEL repository)
|
||||||
|
commands = npm install
|
||||||
|
npm test
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
|
Loading…
Reference in New Issue
Block a user