Skip to content
Snippets Groups Projects
Commit 8e636e71 authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

fix pytest dependency

parent 654566ce
No related branches found
No related tags found
1 merge request!362create new experimental release
Pipeline #23558 passed with stage
in 44 minutes and 50 seconds
......@@ -62,7 +62,9 @@ class PyTvbFramework(PythonPackage):
depends_on('py-tvb-storage', type=('build', 'run'))
depends_on('py-werkzeug', type=('build', 'run'))
depends_on('py-pytest', type='test')
# pytest@7.2: does not depend on py-py, which is needed for py-pytest-benchmark@:3 (https://github.com/ionelmc/pytest-benchmark/issues/226)
# simplest way to address this is to add an upper limit for pytest for now
depends_on('py-pytest@:7.1', type='test')
depends_on('py-pytest-benchmark', type='test')
depends_on('py-pytest-mock', type='test')
depends_on('py-beautifulsoup4', type='test')
......
......@@ -54,7 +54,9 @@ class PyTvbLibrary(PythonPackage):
depends_on('py-tvb-data', type=('run', 'test'))
depends_on('py-tvb-gdist', type=('run', 'test'))
depends_on('py-pytest', type='test')
# pytest@7.2: does not depend on py-py, which is needed for py-pytest-benchmark@:3 (https://github.com/ionelmc/pytest-benchmark/issues/226)
# simplest way to address this is to add an upper limit for pytest for now
depends_on('py-pytest@:7.1', type='test')
depends_on('py-h5py', type='test')
depends_on('py-pytest-benchmark', type='test')
depends_on('py-pytest-xdist', type='test')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment