From 9e606bb0d55db2977cf4f69a36e1e0b221dd95ff Mon Sep 17 00:00:00 2001 From: Dominik Date: Thu, 24 Jul 2014 20:53:32 +0200 Subject: [PATCH] Run vpicc unit tests from Travis --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b122c90..fb79b88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,8 @@ env: -PREFIX=/tmp/install script: #Build virtualsmartcard - - cd virtualsmartcard && autoreconf -vsi && ./configure && make && cd .. + - cd virtualsmartcard && autoreconf -vsi && ./configure && make + - cd src/vpicc/ && export PYTHONPATH=$PYTHONPATH:`pwd` && python -m unittest discover -s virtualsmartcard.tests -p *_test.py -v && cd $TRAVIS_BUILD_DIR # Build pcsc-relay, which requires libnfc - cd /tmp && git clone https://code.google.com/p/libnfc && cd libnfc && autoreconf -i && ./configure --prefix=$PREFIX && make install && cd $TRAVIS_BUILD_DIR - cd pcsc-relay && autoreconf -vsi && ./configure && make && cd ..