diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..59604dc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: python +python: + - "3.6" + +# Make sure libsodium dependency is present +before_install: + - wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.16.tar.gz + - tar -zxvf libsodium-1.0.16.tar.gz + - cd libsodium-1.0.16 + - ./configure + - make && make check + - sudo make install + - cd .. + +install: + - pip install didery + - pip install -e ../didery.py + - dideryd & + - dideryd --port=8000 & + +# Run Tests +script: + - pytest tests/ -vv \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..92d47b5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,13 @@ +arrow==0.12.1 +atomicwrites==1.1.5 +attrs==18.1.0 +click==6.7 +ioflo==1.7.4 +libnacl==1.6.1 +more-itertools==4.3.0 +pluggy==0.7.1 +py==1.5.4 +pytest==3.7.2 +python-dateutil==2.7.3 +simplejson==3.16.0 +six==1.11.0