gaudi: remove the py-qmtest dependency (#38274)

Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
This commit is contained in:
Juan Miguel Carceller 2023-06-12 14:22:21 +02:00 committed by GitHub
parent 66187c8a6e
commit ef4b35ea63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")