diff --git a/README.md b/README.md
index 89d60a5f84100696a2f8328f6d6534738fb959ca..8220e1450a0c399cd8b1e760b5868390d176a59e 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,20 @@
 # libdap-crypto-python
 libdap-crypto python binding
+
+[![Build Status](https://travis-ci.com/cellframe/libdap-crypto-python.svg?branch=master)](https://travis-ci.com/cellframe/libdap-crypto-python)
+
+## Build and Run tests:
+```
+mkdir build
+cd build
+cmake ../
+make
+cp ../test/test_b58.py ./
+cp ../test/test_b64.py ./
+cp ../test/test_iaes256_cbc.py ./
+cp ../test/test_oaes.py ./
+python3.7 test_b58.py
+python3.7 test_b64.py
+python3.7 test_iaes256_cbc.py
+python3.7 test_oaes.py
+```