Skip to content

Commit

Permalink
Add coverscripts for nose tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
abalijepalli committed Feb 24, 2020
1 parent 7574514 commit 89b08e5
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@ conda-build/
cover/
travis-debug
coverage.xml
.eggs
13 changes: 13 additions & 0 deletions mosaicweb/runTests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from tests.mosaicUnitTests import _mosaicUnitTests

def runUnitTests():
testClass=_mosaicUnitTests(object)
testObject=testClass()

testObject.initialize_options()
testObject.verbose=0

testObject.run()

if __name__ == '__main__':
runUnitTests()
13 changes: 13 additions & 0 deletions runTests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from tests.mosaicUnitTests import _mosaicUnitTests

def runUnitTests():
testClass=_mosaicUnitTests(object)
testObject=testClass()

testObject.initialize_options()
testObject.verbose=0

testObject.run()

if __name__ == '__main__':
runUnitTests()

0 comments on commit 89b08e5

Please sign in to comment.