(self, *args, **kwargs)
| 726 | pass |
| 727 | |
| 728 | def run(self, *args, **kwargs): |
| 729 | if os.environ.get("EDGEDB_BUILD_PACKAGE"): |
| 730 | return |
| 731 | build = self.get_finalized_command('build') |
| 732 | _compile_postgres( |
| 733 | pathlib.Path(build.build_base).resolve(), |
| 734 | pathlib.Path(build.build_temp).resolve(), |
| 735 | force_build=True, |
| 736 | fresh_build=self.fresh_build, |
| 737 | run_configure=self.configure, |
| 738 | build_contrib=self.build_contrib, |
| 739 | produce_compile_commands_json=self.compile_commands, |
| 740 | run_tests=self.run_tests, |
| 741 | ) |
| 742 | |
| 743 | |
| 744 | class build_libpg_query(setuptools.Command): |
nothing calls this directly
no test coverage detected