diff options
author | Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> | 2023-06-12 14:22:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-12 14:22:21 +0200 |
commit | ef4b35ea6361e83b243b375fc4e2a28cfc25bc8f (patch) | |
tree | 06347090c6792ced10feb15ef9f5c7ac6f0767b1 | |
parent | 66187c8a6eea03295728be78f18e0f48117b353b (diff) | |
download | spack-ef4b35ea6361e83b243b375fc4e2a28cfc25bc8f.tar.gz spack-ef4b35ea6361e83b243b375fc4e2a28cfc25bc8f.tar.bz2 spack-ef4b35ea6361e83b243b375fc4e2a28cfc25bc8f.tar.xz spack-ef4b35ea6361e83b243b375fc4e2a28cfc25bc8f.zip |
gaudi: remove the py-qmtest dependency (#38274)
Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
-rw-r--r-- | var/spack/repos/builtin/packages/gaudi/package.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/gaudi/package.py b/var/spack/repos/builtin/packages/gaudi/package.py index 2e98e86fab..8d335e5882 100644 --- a/var/spack/repos/builtin/packages/gaudi/package.py +++ b/var/spack/repos/builtin/packages/gaudi/package.py @@ -82,12 +82,7 @@ class Gaudi(CMakePackage): # Testing dependencies # Note: gaudi only builds examples when testing enabled - for pv in ( - ["catch2", "@36.8:"], - ["py-nose", "@35:"], - ["py-pytest", "@36.2:"], - ["py-qmtest", "@35:"], - ): + for pv in (["catch2", "@36.8:"], ["py-nose", "@35:"], ["py-pytest", "@36.2:"]): depends_on(pv[0], when=pv[1], type="test") depends_on(pv[0], when=pv[1] + " +examples") |