aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Carranza <pcarranza@gmail.com>2017-06-11 00:24:57 +0200
committerPablo Carranza <pcarranza@gmail.com>2017-06-11 00:24:57 +0200
commit0a626be4cdc8eee651c008724559f338d47347c4 (patch)
tree876a96bbc73c3bdedce64fabafcf466889756d48
parentbfd853d2d232445444fc8bf36bc407cda66cbec6 (diff)
downloadprometheus-pgbouncer-exporter-0a626be4cdc8eee651c008724559f338d47347c4.tar
prometheus-pgbouncer-exporter-0a626be4cdc8eee651c008724559f338d47347c4.tar.gz
Finish adding installation dependencies
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--setup.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 25eafaf..8ec7a11 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,4 +12,4 @@ unittest:
install:
script:
- python3 setup.py install
- - prometheus-pgbouncer-exporter --version
+ - /usr/local/bin/prometheus-pgbouncer-exporter --version
diff --git a/setup.py b/setup.py
index 315b854..72e2f24 100644
--- a/setup.py
+++ b/setup.py
@@ -15,5 +15,6 @@ setup(
install_requires=[
'psycopg2',
'ConfigArgParse',
+ 'prometheus_client',
],
)