Skip to content

Commit

Permalink
travis dir
Browse files Browse the repository at this point in the history
  • Loading branch information
fportantier committed Jul 27, 2018
1 parent 90fb677 commit 6734cce
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -26,7 +26,6 @@ var/
habu*.tar.gz
beta*.py
*.swp
.travis/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
15 changes: 15 additions & 0 deletions .travis/run.sh
@@ -0,0 +1,15 @@
#!/bin/sh

pip install -e .

for cmd in $(whereis habu | tr " " "\n" | grep "habu\." | grep -v "/usr/")
do
echo $cmd
$cmd --help > /dev/null
if [ "$?" != "0" ]
then
echo "Error running help for $cmd"
exit 1
fi
done

0 comments on commit 6734cce

Please sign in to comment.