Exemple #1
0
    def run(self):
        # Pass build_lib to the CMake builder as build_clib
        build_clib = self.get_finalized_command('build_clib')
        build_clib.build_clib = self.build_lib
        build_clib.run()

        # Invoke the actual Python build
        build.run(self)
Exemple #2
0
    def run(self):
        if test is not None and test.test is not None:
            assert test.test() == True, "Automated tests failed!"
            print("notice  all tests passed: OK!")
        else:
            print("notice  automated tests skipped!")

        build.run(self)
Exemple #3
0
    def run(self):
        # Pass build_lib to the CMake builder as build_clib
        build_clib = self.get_finalized_command('build_clib')
        build_clib.build_clib = self.build_lib
        build_clib.run()

        # Invoke the actual Python build
        build.run(self)
Exemple #4
0
 def run(self):
     build.run(self)
     self.run_command("build_man")
Exemple #5
0
 def run(self):
     ast_gen.generate(path_to_ast_definitions, path_to_ast_definitions)
     _build.run(self)
Exemple #6
0
 def run(self):
     ast_gen.generate(path_to_ast_definitions, path_to_ast_definitions)
     _build.run(self)
Exemple #7
0
 def run(self):
     build.run(self)
     self.run_command('build_man')