run integration tests. They need [py.test](http://pytest.org/latest/)
and rely on Linux containers to be executed.
+To enable code coverage, use:
+
+ ../configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --enable-sanitizers --with-snmp \
+ CFLAGS="-O0 -g --coverage" LDFLAGS="--coverage"
+ make
+ make check
+ # maybe, run integration tests
+ lcov --base-directory $PWD/src/lib \
+ --directory src --capture --output-file gcov.info
+ genhtml gcov.info --output-directory coverage
+
Embedding
---------