Ejemplo n.º 1
0
 def create_package(self, *args):
     CreateCommand().main(
         args=list(args),
         initial_options={}
     )
     os.system('git init .')
     os.system('git add .')
     os.system('git commit -m "Initial commit"')
     os.system('python setup.py develop')
Ejemplo n.º 2
0
 def setUp(self):
     super(TestCreateCommand, self).setUp()
     self.cmd = CreateCommand()