2020-04-26 17:45:39 +09:00
|
|
|
ROOT=$1
|
2020-03-04 12:15:34 +02:00
|
|
|
|
2020-04-26 17:45:39 +09:00
|
|
|
report_args="--junitxml=$ROOT/test_reports/selenium_test_results.xml"
|
|
|
|
report_args+=" --html=$ROOT/test_reports/selenium_test_results.html"
|
|
|
|
report_args+=" --self-contained-html"
|
2023-07-31 13:58:58 +02:00
|
|
|
ignore="--ignore=$ROOT/openstack_dashboard/test/selenium"
|
2020-03-04 12:15:34 +02:00
|
|
|
|
2023-07-31 13:58:58 +02:00
|
|
|
pytest $ROOT/openstack_dashboard/ --ds=openstack_dashboard.test.settings $ignore -v -m selenium $report_args
|