Skip to content
Snippets Groups Projects
Commit 106a9bbc authored by Manuel Günther's avatar Manuel Günther
Browse files

Removed runtime-dependency on nose

parent 4ad67963
No related branches found
No related tags found
No related merge requests found
include README.rst bootstrap-buildout.py buildout.cfg include README.rst bootstrap-buildout.py buildout.cfg version.txt
recursive-include doc *.rst recursive-include doc *.rst
recursive-include gridtk *.sh recursive-include gridtk *.sh
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
from __future__ import print_function from __future__ import print_function
import unittest import unittest
import nose
import os import os
import pkg_resources import pkg_resources
...@@ -43,6 +42,8 @@ class GridTKTest(unittest.TestCase): ...@@ -43,6 +42,8 @@ class GridTKTest(unittest.TestCase):
try: try:
import nose
# first, add some commands to the database # first, add some commands to the database
script_1 = pkg_resources.resource_filename('gridtk.tests', 'test_script.sh') script_1 = pkg_resources.resource_filename('gridtk.tests', 'test_script.sh')
script_2 = pkg_resources.resource_filename('gridtk.tests', 'test_array.sh') script_2 = pkg_resources.resource_filename('gridtk.tests', 'test_array.sh')
...@@ -234,5 +235,5 @@ class GridTKTest(unittest.TestCase): ...@@ -234,5 +235,5 @@ class GridTKTest(unittest.TestCase):
def notest02_grid(self): def notest02_grid(self):
# Tests the functionality of the grid toolkit in the grid # Tests the functionality of the grid toolkit in the grid
import nose
raise nose.plugins.skip.SkipTest("This test is not yet implemented. If you find a proper ways to test the grid functionality, please go ahead and implement the test.") raise nose.plugins.skip.SkipTest("This test is not yet implemented. If you find a proper ways to test the grid functionality, please go ahead and implement the test.")
...@@ -7,9 +7,11 @@ DEPS = ['six'] ...@@ -7,9 +7,11 @@ DEPS = ['six']
if sys.version_info[:2] < (2, 7) or ((3,0) <= sys.version_info[:2] < (3,2)): if sys.version_info[:2] < (2, 7) or ((3,0) <= sys.version_info[:2] < (3,2)):
DEPS.append('argparse') DEPS.append('argparse')
version = open("version.txt").read().rstrip()
setup( setup(
name='gridtk', name='gridtk',
version='1.1.8a0', version=version,
description='SGE Grid and Local Submission and Monitoring Tools for Idiap', description='SGE Grid and Local Submission and Monitoring Tools for Idiap',
url='http://github.com/idiap/gridtk', url='http://github.com/idiap/gridtk',
......
1.1.8a0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment