Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
rienafairefr committed Oct 20, 2016
1 parent 857c59e commit 4e0f6f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ before_install:
- echo "$TRAVIS_COMMIT_MESSAGE"
script:
- 'if [[ "$TRAVIS_EVENT_TYPE" = "cron" || "$TRAVIS_COMMIT_MESSAGE" == *"[ci-cron]"* ]]; then
python -m unittest discover test_sync ;
python -m unittest discover test_sync --logginglevel debug;
else
coverage run -m unittest discover tests/ ;
coverage run -m unittest discover tests/ --logginglevel debug;
fi'
- ( if [ -n "$TRAVIS_TAG" ]; then if [ $TAG_NAME != $TRAVIS_TAG ]; then echo "This tag is for the wrong version. Got \"$TRAVIS_TAG\" expected \"$TAG_NAME\"."; exit 1; fi; fi; )
after_success:
Expand Down
1 change: 1 addition & 0 deletions test_sync/test_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
class TestSync(unittest.TestCase):
@staticmethod
def test_sync():
print('test_sync')
args = parser.parse_known_args()[0]
client = clientfromargs(args)
client.sync()
Expand Down

0 comments on commit 4e0f6f1

Please sign in to comment.