summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorIvan Kolodyazhny <e0ne@e0ne.info>2020-03-10 04:39:54 -0700
committerIvan Kolodyazhny <e0ne@e0ne.info>2020-04-09 09:20:04 +0000
commit8f887350e0642c0b81a1455e8619bc1e789e3dab (patch)
tree0311a43209abc684f4d16ac3cd1c7086b6000c19 /tox.ini
parent63cf09e07ead9f6810f2a850f29cf47da3ffae2e (diff)
downloadhorizon-8f887350e0642c0b81a1455e8619bc1e789e3dab.tar.gz
Fix video recording for integration tests
libav-tools package doesn't exist anymore so we need to use ffmpeg now to capture the screen. Change-Id: I58384f42ded3ed864de0dc2a9a56d2d9943168b9
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 4 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 4603a1317..9103d960d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -83,10 +83,12 @@ setenv =
[testenv:integration]
envdir = {toxworkdir}/venv
# Run integration tests only
-passenv = AVCONV_INSTALLED
+passenv =
+ DISPLAY
+ FFMPEG_INSTALLED
setenv =
INTEGRATION_TESTS=1
- SELENIUM_HEADLESS=1
+ SELENIUM_HEADLESS=False
commands =
oslo-config-generator --namespace openstack_dashboard_integration_tests
{envpython} {toxinidir}/manage.py test openstack_dashboard --settings=openstack_dashboard.test.settings --verbosity 2 --tag integration {posargs}