Remove duplicate line, Make test_pylast.py runnable as main again.

This commit is contained in:
Ivan Malison 2015-01-07 23:31:07 -08:00
parent f1e14f591c
commit 781df0c94f
2 changed files with 5 additions and 6 deletions

View file

@ -22,11 +22,8 @@ install:
- travis_retry pip install coveralls
script: tox
after_success:
- if [ $TOXENV == 'py27' ]; then pip install coveralls; coveralls; fi
- if [ $TOXENV == 'py27' ]; then travis_retry pip install scrutinizer-ocular; ocular;
fi
- if [ $TOXENV == 'py27' ]; then travis_retry pip install scrutinizer-ocular; ocular;
fi
- travis_retry pip install coveralls && coveralls
- travis_retry pip install scrutinizer-ocular && ocular
matrix:
allow_failures:
- python: '3.4'

View file

@ -1908,4 +1908,6 @@ class TestPyLast(unittest.TestCase):
self.assertEqual(str(tracks[0].track.artist), "Johnny Cash")
self.assertEqual(str(tracks[0].track.title), "Ring of Fire")
# End of file
if __name__ == '__main__':
unittest.main(failfast=True)