From 68e6772bbf304a180a5234c195e5ed330e58ad77 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Sat, 29 Sep 2018 11:11:45 -0400 Subject: [PATCH] Fix repo setup Add .zuul.yaml, add .gitreview configuration file remove installation of python-apt, it breaks build and is not needed. Change-Id: I99b87a480253d1018bb8cdb55e1766c4f07ba9dc Signed-off-by: Doug Hellmann --- .gitreview | 4 ++++ .zuul.yaml | 4 ++++ tox.ini | 3 +-- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .gitreview create mode 100644 .zuul.yaml diff --git a/.gitreview b/.gitreview new file mode 100644 index 0000000..e91263e --- /dev/null +++ b/.gitreview @@ -0,0 +1,4 @@ +[gerrit] +host=review.openstack.org +port=29418 +project=openstack/charm-interface-neutron-plugin-api-subordinate.git diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 0000000..5e75d94 --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,4 @@ +- project: + templates: + - python-charm-jobs + - openstack-python35-jobs diff --git a/tox.ini b/tox.ini index c395138..ebbf187 100644 --- a/tox.ini +++ b/tox.ini @@ -6,8 +6,7 @@ skip_missing_interpreters = True [testenv] setenv = VIRTUAL_ENV={envdir} PYTHONHASHSEED=0 -install_command = - pip install --allow-unverified python-apt {opts} {packages} +install_command = pip install {opts} {packages} commands = ostestr {posargs} [testenv:py27]