File tree Expand file tree Collapse file tree 4 files changed +25
-6
lines changed
Expand file tree Collapse file tree 4 files changed +25
-6
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -68,7 +68,10 @@ def get_packages():
6868 author_email = 'cool-rr@cool-rr.com' ,
6969 url = 'http://garlicsim.org' ,
7070 packages = get_packages (),
71- scripts = ['garlicsim/scripts/start_simpack.py' ],
71+ scripts = [
72+ 'garlicsim/scripts/start_simpack.py' ,
73+ 'test_garlicsim\scripts\invoke_nose.py' ,
74+ ],
7275 license = 'LGPL v2.1' ,
7376 long_description = my_long_description ,
7477 classifiers = my_classifiers ,
Original file line number Diff line number Diff line change 1+ # Copyright 2009-2011 Ram Rachum.
2+ # This program is distributed under the LGPL2.1 license.
3+
4+ '''Testing package for `garlicsim`.'''
5+
6+ from . import invoke_nose
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+
3+ # Copyright 2009-2011 Ram Rachum.
4+ # This program is distributed under the LGPL2.1 license.
5+
6+ '''
7+ This module defines the `` class.
8+
9+ See its documentation for more information.
10+ '''
11+
12+ import test_garlicsim
13+
14+ if __name__ == '__main__' :
15+ test_garlicsim .invoke_nose ()
You can’t perform that action at this time.
0 commit comments