Skip to content

Commit a6ad12d

Browse files
authored
Merge pull request #72 from amadeus4dev/travis-update
Run code samples when merge to master
2 parents 00783dc + 8b39c28 commit a6ad12d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

.travis_script.sh

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
if [[ $TRAVIS_EVENT_TYPE == "pull_request" && $TRAVIS_PULL_REQUEST_BRANCH != "master" ]] ; then
2-
python examples/hotel_search/hotel_search.py
3-
if [[ $? != 0 ]]; then exit 1 ; fi
4-
python examples/flight_choice_prediction/flight_choice_prediction.py
5-
if [[ $? != 0 ]]; then exit 1 ; fi
6-
python examples/flight_offers_search/flight_offers_search.py
7-
if [[ $? != 0 ]]; then exit 1 ; fi
8-
python examples/hotel_ratings/hotel_ratings.py
9-
if [[ $? != 0 ]]; then exit 1 ; fi
10-
python examples/points_of_interest/points_of_interest.py
11-
if [[ $? != 0 ]]; then exit 1 ; fi
12-
fi
131
if [[ $TRAVIS_EVENT_TYPE == "push" && $TRAVIS_BRANCH == "master" ]] ; then
142
for folder in examples/*/ ; do
153
for file in "$folder"/* ; do

0 commit comments

Comments
 (0)