From 89b08e515b084e102fdd1a4736dfc5cad466d65d Mon Sep 17 00:00:00 2001 From: Arvind Balijepalli Date: Mon, 24 Feb 2020 14:47:25 -0500 Subject: [PATCH] Add coverscripts for nose tests. --- .gitignore | 1 + mosaicweb/runTests.py | 13 +++++++++++++ runTests.py | 13 +++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 mosaicweb/runTests.py create mode 100644 runTests.py diff --git a/.gitignore b/.gitignore index f8c0ab66..2247391a 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,4 @@ conda-build/ cover/ travis-debug coverage.xml +.eggs diff --git a/mosaicweb/runTests.py b/mosaicweb/runTests.py new file mode 100644 index 00000000..5a79ac7d --- /dev/null +++ b/mosaicweb/runTests.py @@ -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() \ No newline at end of file diff --git a/runTests.py b/runTests.py new file mode 100644 index 00000000..5a79ac7d --- /dev/null +++ b/runTests.py @@ -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() \ No newline at end of file