summaryrefslogtreecommitdiffstats
path: root/DEVELOP.rst
diff options
context:
space:
mode:
Diffstat (limited to 'DEVELOP.rst')
-rw-r--r--DEVELOP.rst30
1 files changed, 30 insertions, 0 deletions
diff --git a/DEVELOP.rst b/DEVELOP.rst
index 2daf4cb5..39e932f0 100644
--- a/DEVELOP.rst
+++ b/DEVELOP.rst
@@ -122,3 +122,33 @@ The rpm package can be installed as follows:
::
$ sudo yum install pgcli*.rpm
+
+Running the integration tests
+-----------------------------
+
+Integration tests use `behave package http://pythonhosted.org/behave/`_.
+Configuration settings for this package are provided via ``behave.ini`` file
+in root directory.
+
+The database user (``pg_test_user = postgres`` in .ini file) has to have
+permissions to create and drop test database. Dafault user is ``postgres``
+at ``localhost``, without the password (authentication mode trust).
+
+First, install the requirements for testing:
+
+::
+
+ $ pip install -r requirements-dev.txt
+
+After that, tests can be run with:
+
+::
+
+ $ behave
+
+To see stdout/stderr, use the following command:
+
+::
+
+ $ behave --no-capture
+