diff options
author | Ruben Pollan <meskio@sindominio.net> | 2017-11-28 23:53:37 +0100 |
---|---|---|
committer | Varac <varac@leap.se> | 2017-11-30 23:00:28 +0100 |
commit | b87bb4cab9ad0ad5ffce652ef2fc2a4f1f4a1d8f (patch) | |
tree | 508c43225bc184b825254efba6476a2356a33dc5 /.gitlab-ci.yml | |
parent | 56704dbe906901e4d22ef03affd7b64e4975b7ef (diff) |
[test] install gnupg1 and haveged for the e2e test
Since we are using artful for the tests it comes with gnupg2 and breaks
the e2e tests.
Also install haveged to speed up e2e tests.
- Resolves: #9159
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4d56e8d7..c3a8d799 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,7 +60,7 @@ e2e_tests: dependencies: - linux_test script: - - dpkg -l tox > /dev/null || apt-get -y --no-install-recommends install tox + - dpkg -l tox gnupg1 haveged > /dev/null || apt-get -y --no-install-recommends install tox gnupg1 haveged - tox -e py27-dev --notest - source .tox/py27-dev/bin/activate - make dev-latest-backend |