diff --git a/testkit/build.py b/testkit/build.py index 50b5af537..e56edaa7c 100644 --- a/testkit/build.py +++ b/testkit/build.py @@ -20,7 +20,11 @@ if __name__ == "__main__": - run_python(["-m", "pip", "install", "-U", "pip"], warning_as_error=False) + run_python( + ["-m", "pip", "install", "-U", "pip", "build"], + warning_as_error=False, + ) + run_python(["-m", "build", "."], warning_as_error=True) run_python( ["-m", "pip", "install", "-Ur", "requirements-dev.txt"], warning_as_error=False,