We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4fa40 commit 3c34c09Copy full SHA for 3c34c09
aiida_test_cache/mock_code/__init__.py
@@ -24,7 +24,9 @@
24
from packaging.version import Version
25
26
if Version(aiida_version) >= Version('2.6.0'):
27
- aiida_core_fixtures = 'aiida.tools.pytest_fixtures'
+ # DEBUG:
28
+ aiida_core_fixtures = 'aiida.manage.tests.pytest_fixtures'
29
+ # aiida_core_fixtures = 'aiida.tools.pytest_fixtures'
30
else:
31
aiida_core_fixtures = 'aiida.manage.tests.pytest_fixtures'
32
pytest_plugins = [aiida_core_fixtures]
tests/conftest.py
@@ -10,7 +10,7 @@
10
]
11
12
# Compatibility with old aiida-core fixtures
13
-if Version(aiida_version) < Version('2.6.0'):
+if Version(aiida_version) < Version('2.7.0'):
14
15
@pytest.fixture
16
def aiida_profile_clean(clear_database):
0 commit comments