
* Extract the MetaPathFinder and Loaders for packages in their own classes https://peps.python.org/pep-0451/ Currently, RepoPath and Repo implement the (deprecated) interface of MetaPathFinder (find_module) and of Loader (load_module). This commit extracts both of them and places the code in their own classes. The MetaPathFinder interface is updated to contain both the deprecated "find_module" (for Python 2.7 support) and the recommended "find_spec". Update of the Loader interface is deferred at a subsequent commit. * Move the lines to be prepended inside "RepoLoader" Also adjust the naming of a few variables too * Remove spack.util.imp, since code is only used in spack.repo * Remove support from loading Python modules Python > 3 but < 3.5 * Remove `Repo._create_namespace` This function was interacting badly with the MetaPathFinder and causing issues with "normal" imports. Removing the function allows to do things like: ```python import spack.pkg.builtin.mpich cls = spack.pkg.builtin.mpich.Mpich ``` * Remove code needed to trigger the Singleton evaluation The finder is coded in a way to trigger the Singleton, so we don't need external code now that we register it at module level into `sys.meta_path`. * Add unit tests
64 lines
1.9 KiB
Bash
Executable File
64 lines
1.9 KiB
Bash
Executable File
#!/bin/bash -e
|
|
#
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
#
|
|
# Description:
|
|
# Runs Spack unit tests.
|
|
#
|
|
# Usage:
|
|
# run-unit-tests [test ...]
|
|
#
|
|
# Options:
|
|
# Optionally add one or more unit tests
|
|
# to only run these tests.
|
|
#
|
|
|
|
#-----------------------------------------------------------
|
|
# Run a few initial commands and set up test environment
|
|
#-----------------------------------------------------------
|
|
ORIGINAL_PATH="$PATH"
|
|
|
|
. "$(dirname $0)/setup.sh"
|
|
check_dependencies $coverage git hg svn
|
|
|
|
# Move to root directory of Spack
|
|
# Allows script to be run from anywhere
|
|
cd "$SPACK_ROOT"
|
|
|
|
# Print compiler information
|
|
spack config get compilers
|
|
|
|
# Run spack help to cover command import
|
|
bin/spack -h
|
|
bin/spack help -a
|
|
|
|
# Profile and print top 20 lines for a simple call to spack spec
|
|
spack -p --lines 20 spec mpileaks%gcc ^dyninst@10.0.0 ^elfutils@0.170
|
|
$coverage_run $(which spack) bootstrap status --dev --optional
|
|
|
|
# Check that we can import Spack packages directly as a first import
|
|
$coverage_run $(which spack) python -c "import spack.pkg.builtin.mpileaks; repr(spack.pkg.builtin.mpileaks.Mpileaks)"
|
|
|
|
#-----------------------------------------------------------
|
|
# Run unit tests with code coverage
|
|
#-----------------------------------------------------------
|
|
if [[ "$ONLY_PACKAGES" == "true" ]]; then
|
|
echo "ONLY PACKAGE RECIPES CHANGED [skipping slow unit tests]"
|
|
export PYTEST_ADDOPTS='-k "package_sanity" -m "not maybeslow"'
|
|
fi
|
|
|
|
$coverage_run $(which spack) unit-test -x --verbose
|
|
|
|
bash "$QA_DIR/test-env-cfg.sh"
|
|
|
|
# Delete the symlink going from ./lib/spack/docs/_spack_root back to
|
|
# the initial directory, since it causes ELOOP errors with codecov/actions@2
|
|
if [[ "$COVERAGE" == "true" ]]; then
|
|
rm lib/spack/docs/_spack_root
|
|
fi
|
|
|