Skip to content
This repository has been archived by the owner on Jan 3, 2018. It is now read-only.

Commit

Permalink
add version printout to .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
h4llow3En committed Nov 13, 2015
1 parent dbb9bf3 commit b5c4f58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ language: python
python: "3.5"

script:
- nosetests --version
- nosetests -w ./tests -d

sudo: false
3 changes: 0 additions & 3 deletions tests/export_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ def setUp(self):

def test_alllists(self):
fake_argv = ['../tdo.py', 'export', './test.md']
self.setUp()
todos = todolist.load()
todolist.mdexport(todos, fake_argv)
shouldstr = '''# Your todos:
Expand Down Expand Up @@ -64,7 +63,6 @@ def test_alllists(self):
self.assertEqual(shouldstr, isstr, msg='Can not export all lists.')

def test_sinlgelist(self):
self.setUp()
fake_argv = ['../tdo.py', 'export', './test.md', 'Testlist1']
todos = todolist.load()
todolist.mdexport(todos, fake_argv)
Expand All @@ -84,7 +82,6 @@ def test_sinlgelist(self):
self.assertEqual(shouldstr, isstr, msg='Can not export all lists.')

def test_multilist(self):
self.setUp()
fake_argv = ['../tdo.py', 'export', './test.md', 'Testlist1',
'Testlist2']
todos = todolist.load()
Expand Down

0 comments on commit b5c4f58

Please sign in to comment.