Skip to content

Commit

Permalink
travis: run functests
Browse files Browse the repository at this point in the history
Fixes iterative#175

Signed-off-by: Ruslan Kuprieiev <[email protected]>
  • Loading branch information
efiop committed Aug 20, 2017
1 parent 0f45afb commit dc77e03
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ install:
- mkdir -p ~/.aws && printf "[default]\naws_access_key_id = ABCDEFG\naws_secret_access_key = 123456789" > ~/.aws/credentials
script:
- ./unittests.sh
- ./functests.sh
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./build_macos.sh; else ./build_linux.sh; fi
- ./build_package.sh
after_sucess:
Expand Down
11 changes: 11 additions & 0 deletions functests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
BIN=$DIR/bin
DVC_HOME=$DIR

export PATH=$BIN:$PATH
export DVC_HOME=$DIR

cd functest
./run.sh
1 change: 1 addition & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
coverage
xmltodict

0 comments on commit dc77e03

Please sign in to comment.