Skip to content

Commit

Permalink
Fix system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GuiMacielPereira committed Jan 7, 2025
1 parent 1da5ec4 commit 51e2777
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Binary file not shown.
6 changes: 5 additions & 1 deletion tests/system/analysis/test_yspace_fit.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from mvesuvio.main.run_routine import Runner
from mantid.simpleapi import Load, Plus, mtd, CreateWorkspace, CloneWorkspace
from mantid.simpleapi import Load, LoadAscii
from mantid.api import AnalysisDataService
from pathlib import Path
import numpy as np
Expand Down Expand Up @@ -55,6 +55,10 @@ def _load_workspaces(cls):
str(cls._input_data_path / "yspace_tests_fwd_1_1.0079_ncp.nxs"),
OutputWorkspace="yspace_gauss_test_fwd_1_1.0079_ncp"
)
Load(
str(cls._input_data_path / "yspace_gauss_test_fwd_initial_parameters.nxs"),
OutputWorkspace="yspace_gauss_test_fwd_initial_parameters"
)
return

@classmethod
Expand Down
4 changes: 4 additions & 0 deletions tests/system/analysis/test_yspace_fit_GC.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ def _load_workspaces(cls):
str(cls._input_data_path / "yspace_tests_fwd_1_1.0079_ncp.nxs"),
OutputWorkspace="yspace_gc_test_fwd_1_1.0079_ncp"
)
Load(
str(cls._input_data_path / "yspace_gauss_test_fwd_initial_parameters.nxs"),
OutputWorkspace="yspace_gc_test_fwd_initial_parameters"
)
return

@classmethod
Expand Down

0 comments on commit 51e2777

Please sign in to comment.