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 70bebb3 commit 30a46acCopy full SHA for 30a46ac
requirements.txt
@@ -13,3 +13,4 @@ tqdm
13
pandas
14
sphinx
15
sphinx_rtd_theme
16
+pytest-json-report
tests/IVIMmodels/unit_tests/test_ivim_fit.py
@@ -10,18 +10,6 @@
10
logger = logging.getLogger(__name__)
11
#run using python -m pytest from the root folder
12
-@pytest.fixture(scope="session")
-def test_results():
- return []
-
17
-@pytest.fixture(scope="session", autouse=True)
18
-def write_report(test_results, request):
19
- def finalize():
20
- with open('test_results_report.json', 'w') as f:
21
- json.dump({"results": test_results}, f, indent=4)
22
- request.addfinalizer(finalize)
23
24
25
def signal_helper(signal):
26
signal = np.asarray(signal)
27
signal = np.abs(signal)
0 commit comments