File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,13 +28,7 @@ Running the unit tests
2828
2929Running the unit tests requires Nose.
3030
31- 1. Build and install in the source code tree so that the unit tests can run::
32-
33- python setup.py develop
34-
35- 2. Running the unit tests::
36-
37- python setup.py nosetests
31+ python nosetests.py
3832
3933
4034Starting the JVM
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+
3+ import nose
4+ from javabridge .noseplugin import JavabridgePlugin
5+
6+ if __name__ == '__main__' :
7+ nose .main (plugins = [JavabridgePlugin ()])
8+
Original file line number Diff line number Diff line change 2323 ],
2424 license = 'BSD License' ,
2525 package_data = {'bioformats' : ['jars/*.jar' ]},
26- install_requires = ['javabridge>=1.0' ],
27- tests_require = 'nose' ,
28- entry_points = {'nose.plugins.0.10' : [
29- 'javabridge = javabridge.noseplugin:JavabridgePlugin' ,
30- ]},
31- test_suite = 'nose.collector'
26+ install_requires = ['javabridge>=1.0' ]
3227)
3328
You can’t perform that action at this time.
0 commit comments