Skip to content

Commit c463660

Browse files
committed
run pyhermes tests in circleci
1 parent 6517810 commit c463660

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

circle.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,16 @@
2020

2121
dependencies:
2222
pre:
23-
- sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install libssl-dev build-essential
23+
- sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install libssl-dev build-essential python-dev python3-dev python-setuptool python3-setuptools
2424
- git clone https://github.com/cossacklabs/themis && cd themis && sudo make install
2525

2626
override:
2727
- make
2828
- sudo make install
29+
- sudo pip install tox
2930

3031
test:
3132
override:
32-
- make test
33+
- make test
34+
# run only TestHermesTransport until add support of running stores
35+
- cd pyhermes && tox -- python -m unittest test.TestHermesTransport

pyhermes/tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[tox]
2-
envlist = py27,py34,py36
2+
envlist = py2,py3
33
[testenv]
4-
deps=nose
54
commands={posargs:python -m unittest}

0 commit comments

Comments
 (0)