diff options
Diffstat (limited to '.travis/test/mutual_friends.sh')
-rwxr-xr-x | .travis/test/mutual_friends.sh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.travis/test/mutual_friends.sh b/.travis/test/mutual_friends.sh index ebe0c17..ebecf8e 100755 --- a/.travis/test/mutual_friends.sh +++ b/.travis/test/mutual_friends.sh @@ -7,15 +7,13 @@ set -o errexit -o nounset -o pipefail -mutual_friends() { - echo 'Running mutual_friends.py --format csv...' - python3 -m bin.mutual_friends --format csv "$@" - echo 'Running mutual_friends.py --format json...' - python3 -m bin.mutual_friends --format json "$@" +test_users() { + ./.travis/test.sh bin.mutual_friends --format csv "$@" + ./.travis/test.sh bin.mutual_friends --format json "$@" } main() { - mutual_friends kreed58 maxkorzh_official + test_users kreed58 maxkorzh_official } main "$@" |