diff --git a/src/xfel_calibrate/calibrate.py b/src/xfel_calibrate/calibrate.py index 7268d8701eac63b9e08aa8e8f18475633f1b13ce..a732b23b35340695c662e21ec8fa6db7fd63b678 100755 --- a/src/xfel_calibrate/calibrate.py +++ b/src/xfel_calibrate/calibrate.py @@ -839,6 +839,8 @@ class JobGroup: # TODO: Naming - task? request? commission? }, f, indent=2) def submit_jobs(self, slurm_opts: SlurmOptions): + print("Submitting jobs with Slurm options:") + print(" ".join(slurm_opts.get_launcher_command(self.work_dir))) all_job_ids = [] dep_job_ids = [] for step in self.steps: diff --git a/tests/test_xfel_calibrate/conftest.py b/tests/test_xfel_calibrate/conftest.py index 2920104b43ea83046f5b428a35fc431e0005ae48..84765fe4121b6922b5cd500d32c502f68e806a25 100644 --- a/tests/test_xfel_calibrate/conftest.py +++ b/tests/test_xfel_calibrate/conftest.py @@ -44,6 +44,10 @@ class FakeProcessCalibrate(FakeProcess): self.register_subprocess( ["git", self.any(), "describe", "--tag"], stdout=["0.0.0"] ) + # For recording installed packages + self.register_subprocess( + [self.any(), '-m', 'pip', 'freeze'], stdout=["h5py==3.3.0"], + ) self.keep_last_process(True) diff --git a/tests/test_xfel_calibrate/test_cli.py b/tests/test_xfel_calibrate/test_cli.py index ed02de5e71744f9340447e6581dbed04acaf1134..8eeae450e17dd88225c6f080786f83208cdcdfec 100644 --- a/tests/test_xfel_calibrate/test_cli.py +++ b/tests/test_xfel_calibrate/test_cli.py @@ -160,7 +160,6 @@ class TestTutorialNotebook: assert "sbatch" in calibrate_call.out assert "--job-name xfel_calibrate" in calibrate_call.out assert str(calibrate_call.tmp_path) in calibrate_call.out - assert "Submitted job: " in calibrate_call.out assert calibrate_call.err == "" @@ -210,9 +209,6 @@ class TestTutorialNotebook: expected_equals = { "joblist": ["000000"], - "project": "Tutorial Calculation", - "calibration": "Tutorial Calculation", - "author": "Astrid Muennich", "version": "0.0.0", "data_path": "", }