From 30c0ef1fd8bd5b9f166acccd4df55536f7109e26 Mon Sep 17 00:00:00 2001 From: Alex Richert Date: Mon, 11 Sep 2023 17:38:52 -0700 Subject: [PATCH] u --- spack/package.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spack/package.py b/spack/package.py index d048055b..084fc19e 100644 --- a/spack/package.py +++ b/spack/package.py @@ -86,8 +86,6 @@ def setup_run_environment(self, env): env.set("IP_LIB" + suffix, lib[0]) env.set("IP_INC" + suffix, join_path(self.prefix, "include_" + suffix)) - @run_after("build") - @on_package_attributes(run_tests=True) - def check_build(self): + def check(self): with working_dir(self.build_directory): make("test -j%s" % make_jobs)