<?xml version="1.0" encoding="utf-8"?><testsuites name="pytest tests"><testsuite name="pytest" errors="0" failures="4" skipped="0" tests="18" time="31455.595" timestamp="2026-05-16T07:10:59.368366-04:00" hostname="cvpost128"><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_uid___A002_Xee1eb6_Xc58d__procedure_hifa_calsurvey__regression" file="tests/regression/fast/alma_if_fast_test.py" line="185" time="18140.866" /><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_E2E6_1_00010_S__uid___A002_Xd0a588_X2239__procedure_hifa_image__regression" file="tests/regression/fast/alma_if_fast_test.py" line="146" time="10779.058" /><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_uid___A002_Xc46ab2_X15ae__selfcal_restore_procedure_hifa_image__regression" file="tests/regression/fast/alma_if_fast_test.py" line="77" time="2938.716" /><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_2023_1_00228_S__uid___A002_X1199f9e_X7c24__procedure_hifa_calimage_diffgain__regression" file="tests/regression/fast/alma_if_fast_test.py" line="125" time="31438.167" /><testcase classname="tests.regression.fast.nobeyama_sd_fast_test" name="test_mg2_20170525142607_180419__PPR__regression" file="tests/regression/fast/nobeyama_sd_fast_test.py" line="23" time="2441.589"><failure message="AssertionError: Expected key s6.hsd_imaging.mg2-20170525142607-180419.field_0.spw_0.qa.metric.line_emission_off_range_at_peak does not match new key s6.hsd_imaging.mg2-20170525142607-180419.field_0.spw_0.qa.metric.score_sd_line_emission_off_range_at_peak.">def test_mg2_20170525142607_180419__PPR__regression():
        """Run ALMA single-dish cal+image regression for restore nobeyama recipe.
    
        PPR:                        pl-regressiontest/mg2-20170525142607-180419_PPR/PPR.xml
        Dataset:                    mg2-20170525142607-180419_PPR
        """
        ref_directory = 'pl-regressiontest/mg2-20170525142607-180419_PPR'
    
        pt = PipelineTester(
            visname=['mg2-20170525142607-180419.ms'],
            ppr=f'{ref_directory}/PPR.xml',
            input_dir=ref_directory,
            output_dir='mg2-20170525142607-180419_PPR',
            expectedoutput_dir=ref_directory,
            )
    
        # copy files use restore task into products folder
        if not pt.compare_only:
            input_products = casa_tools.utils.resolve(f'{ref_directory}/products')
            shutil.copytree(input_products, f'{pt.output_dir}/products')
    
&gt;       pt.run()

tests/regression/fast/nobeyama_sd_fast_test.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/testing_utils.py:376: in run
    self.__compare_results(new_file, default_relative_tolerance)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;tests.testing_utils.PipelineTester object at 0x7fac1515ac90&gt;
new_file = 'mg2-20170525142607-180419.ms.NEW.results.txt'
relative_tolerance = 1e-07

    def __compare_results(self, new_file: str, relative_tolerance: float) -&gt; None:
        """
        Compare results between new one loaded from file and old one.
    
        Args:
            new_file : file path of new results
            relative_tolerance : relative tolerance of output value
        """
        with open(self.expectedoutput_file) as expected_fd, open(new_file) as new_fd:
            expected_results = expected_fd.readlines()
            new_results = new_fd.readlines()
            errors = []
            worst_diff = (0, 0)
            worst_percent_diff = (0, 0)
            for old, new in zip(expected_results, new_results):
                try:
                    oldkey, oldval, tol = self.__sanitize_results_string(old)
                    newkey, newval, _ = self.__sanitize_results_string(new)
                except ValueError as e:
                    errorstr = "The results: {0} could not be parsed. Error: {1}".format(new, str(e))
                    errors.append(errorstr)
                    continue
    
&gt;               assert oldkey == newkey, f"Expected key {oldkey} does not match new key {newkey}."
                       ^^^^^^^^^^^^^^^^
E               AssertionError: Expected key s6.hsd_imaging.mg2-20170525142607-180419.field_0.spw_0.qa.metric.line_emission_off_range_at_peak does not match new key s6.hsd_imaging.mg2-20170525142607-180419.field_0.spw_0.qa.metric.score_sd_line_emission_off_range_at_peak.

tests/testing_utils.py:409: AssertionError</failure></testcase><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_2022_1_00207_S__uid___A001_X2d20_X373d__PPR__regression" file="tests/regression/fast/alma_if_fast_test.py" line="101" time="29397.772" /><testcase classname="tests.regression.fast.alma_sd_fast_test" name="test_uid___A002_X85c183_X36f_SPW15_23__PPR__regression" file="tests/regression/fast/alma_sd_fast_test.py" line="24" time="1301.906"><failure message="AssertionError: Expected key s7.hsd_imaging.uid___A002_X85c183_X36f_SPW15_23.ms.atmcor.field_1.spw_23.qa.metric.line_emission_off_range_at_peak does not match new key s7.hsd_imaging.uid___A002_X85c183_X36f_SPW15_23.ms.atmcor.field_1.spw_23.qa.metric.score_sd_line_emission_off_range_at_peak.">def test_uid___A002_X85c183_X36f_SPW15_23__PPR__regression():
        """Run ALMA single-dish restoredata regression on the observation data of M100.
    
        PPR: PPR.xml                pl-regressiontest/uid___A002_X85c183_X36f_SPW15_23/PPR.xml
        Dataset:                    uid___A002_X85c183_X36f_SPW15_23
        """
        ref_directory = 'pl-regressiontest/uid___A002_X85c183_X36f_SPW15_23'
    
        pt = PipelineTester(
            visname=['uid___A002_X85c183_X36f_SPW15_23.ms'],
            ppr=f'{ref_directory}/PPR.xml',
            input_dir=ref_directory,
            expectedoutput_dir=ref_directory,
            )
    
        # copy files use restore task into products folder
        if not pt.compare_only:
            input_products = casa_tools.utils.resolve(f'{ref_directory}/products')
            shutil.copytree(input_products, f'{pt.output_dir}/products')
    
&gt;       pt.run()

tests/regression/fast/alma_sd_fast_test.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/testing_utils.py:376: in run
    self.__compare_results(new_file, default_relative_tolerance)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;tests.testing_utils.PipelineTester object at 0x7f99d9be4f20&gt;
new_file = 'uid___A002_X85c183_X36f_SPW15_23.ms.NEW.results.txt'
relative_tolerance = 1e-07

    def __compare_results(self, new_file: str, relative_tolerance: float) -&gt; None:
        """
        Compare results between new one loaded from file and old one.
    
        Args:
            new_file : file path of new results
            relative_tolerance : relative tolerance of output value
        """
        with open(self.expectedoutput_file) as expected_fd, open(new_file) as new_fd:
            expected_results = expected_fd.readlines()
            new_results = new_fd.readlines()
            errors = []
            worst_diff = (0, 0)
            worst_percent_diff = (0, 0)
            for old, new in zip(expected_results, new_results):
                try:
                    oldkey, oldval, tol = self.__sanitize_results_string(old)
                    newkey, newval, _ = self.__sanitize_results_string(new)
                except ValueError as e:
                    errorstr = "The results: {0} could not be parsed. Error: {1}".format(new, str(e))
                    errors.append(errorstr)
                    continue
    
&gt;               assert oldkey == newkey, f"Expected key {oldkey} does not match new key {newkey}."
                       ^^^^^^^^^^^^^^^^
E               AssertionError: Expected key s7.hsd_imaging.uid___A002_X85c183_X36f_SPW15_23.ms.atmcor.field_1.spw_23.qa.metric.line_emission_off_range_at_peak does not match new key s7.hsd_imaging.uid___A002_X85c183_X36f_SPW15_23.ms.atmcor.field_1.spw_23.qa.metric.score_sd_line_emission_off_range_at_peak.

tests/testing_utils.py:409: AssertionError</failure></testcase><testcase classname="tests.regression.fast.vla_fast_test" name="test_13A_537__restore__cont_cube_selfcal__regression" file="tests/regression/fast/vla_fast_test.py" line="73" time="23106.809" /><testcase classname="tests.regression.fast.vla_fast_test" name="test_13A_537__calibration__PPR__regression" file="tests/regression/fast/vla_fast_test.py" line="27" time="3596.665" /><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_uid___A002_Xc845c0_X7366__cycle5_restore_procedure_hifa_image__regression" file="tests/regression/fast/alma_if_fast_test.py" line="52" time="11651.947" /><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_uid___A002_Xef72bb_X9d29__renorm_restore_procedure_hifa_image__regression" file="tests/regression/fast/alma_if_fast_test.py" line="28" time="10575.939" /><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_uid___A002_Xc46ab2_X15ae_repSPW_spw16_17_small__PPR__regression" file="tests/regression/fast/alma_if_fast_test.py" line="9" time="2184.071" /><testcase classname="tests.regression.fast.nobeyama_sd_fast_test" name="test_mg2_20170525142607_180419__procedure_hsdn_calimage__regression" file="tests/regression/fast/nobeyama_sd_fast_test.py" line="6" time="2568.398"><failure message="AssertionError: Expected key s10.hsd_imaging.mg2-20170525142607-180419.field_0.spw_0.qa.metric.line_emission_off_range_at_peak does not match new key s10.hsd_imaging.mg2-20170525142607-180419.field_0.spw_0.qa.metric.score_sd_line_emission_off_range_at_peak.">def test_mg2_20170525142607_180419__procedure_hsdn_calimage__regression():
        """Run ALMA single-dish cal+image regression for standard nobeyama recipe.
    
        Recipe name:                procedure_hsdn_calimage
        Dataset:                    mg2-20170525142607-180419
        """
        ref_directory = 'pl-regressiontest/mg2-20170525142607-180419'
    
        pt = PipelineTester(
            visname=['mg2-20170525142607-180419.ms'],
            recipe='procedure_hsdn_calimage.xml',
            input_dir=ref_directory,
            expectedoutput_dir=ref_directory,
            )
&gt;       pt.run()

tests/regression/fast/nobeyama_sd_fast_test.py:21: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/testing_utils.py:376: in run
    self.__compare_results(new_file, default_relative_tolerance)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;tests.testing_utils.PipelineTester object at 0x7f9984d86e10&gt;
new_file = 'mg2-20170525142607-180419.ms.NEW.results.txt'
relative_tolerance = 1e-07

    def __compare_results(self, new_file: str, relative_tolerance: float) -&gt; None:
        """
        Compare results between new one loaded from file and old one.
    
        Args:
            new_file : file path of new results
            relative_tolerance : relative tolerance of output value
        """
        with open(self.expectedoutput_file) as expected_fd, open(new_file) as new_fd:
            expected_results = expected_fd.readlines()
            new_results = new_fd.readlines()
            errors = []
            worst_diff = (0, 0)
            worst_percent_diff = (0, 0)
            for old, new in zip(expected_results, new_results):
                try:
                    oldkey, oldval, tol = self.__sanitize_results_string(old)
                    newkey, newval, _ = self.__sanitize_results_string(new)
                except ValueError as e:
                    errorstr = "The results: {0} could not be parsed. Error: {1}".format(new, str(e))
                    errors.append(errorstr)
                    continue
    
&gt;               assert oldkey == newkey, f"Expected key {oldkey} does not match new key {newkey}."
                       ^^^^^^^^^^^^^^^^
E               AssertionError: Expected key s10.hsd_imaging.mg2-20170525142607-180419.field_0.spw_0.qa.metric.line_emission_off_range_at_peak does not match new key s10.hsd_imaging.mg2-20170525142607-180419.field_0.spw_0.qa.metric.score_sd_line_emission_off_range_at_peak.

tests/testing_utils.py:409: AssertionError</failure></testcase><testcase classname="tests.regression.fast.vla_fast_test" name="test_13A_537__procedure_hifv__regression" file="tests/regression/fast/vla_fast_test.py" line="8" time="3650.885" /><testcase classname="tests.regression.fast.vla_fast_test" name="test_13A_537__restore__PPR__regression" file="tests/regression/fast/vla_fast_test.py" line="46" time="316.213" /><testcase classname="tests.regression.fast.alma_if_fast_test" name="test_csv_3899_eb2_small__procedure_hifa_calimage__regression" file="tests/regression/fast/alma_if_fast_test.py" line="165" time="8935.807" /><testcase classname="tests.regression.fast.alma_sd_fast_test" name="test_uid___A002_X85c183_X36f__procedure_hsd_calimage__regression" file="tests/regression/fast/alma_sd_fast_test.py" line="6" time="4704.698"><failure message="AssertionError: Expected key s13.hsd_imaging.uid___A002_X85c183_X36f.ms.atmcor.field_1.spw_17.qa.metric.line_emission_off_range_at_peak does not match new key s13.hsd_imaging.uid___A002_X85c183_X36f.ms.atmcor.field_1.spw_17.qa.metric.score_sd_line_emission_off_range_at_peak.">def test_uid___A002_X85c183_X36f__procedure_hsd_calimage__regression():
        """Run ALMA single-dish cal+image regression on the observation data of M100.
    
        Recipe name:                procedure_hsd_calimage
        Dataset:                    uid___A002_X85c183_X36f
        """
        ref_directory = 'pl-regressiontest/uid___A002_X85c183_X36f'
    
        pt = PipelineTester(
            visname=['uid___A002_X85c183_X36f'],
            recipe='procedure_hsd_calimage.xml',
            input_dir=ref_directory,
            expectedoutput_dir=ref_directory,
            )
    
&gt;       pt.run()

tests/regression/fast/alma_sd_fast_test.py:22: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/testing_utils.py:376: in run
    self.__compare_results(new_file, default_relative_tolerance)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;tests.testing_utils.PipelineTester object at 0x7ff7d0c7aea0&gt;
new_file = 'uid___A002_X85c183_X36f.NEW.results.txt', relative_tolerance = 1e-07

    def __compare_results(self, new_file: str, relative_tolerance: float) -&gt; None:
        """
        Compare results between new one loaded from file and old one.
    
        Args:
            new_file : file path of new results
            relative_tolerance : relative tolerance of output value
        """
        with open(self.expectedoutput_file) as expected_fd, open(new_file) as new_fd:
            expected_results = expected_fd.readlines()
            new_results = new_fd.readlines()
            errors = []
            worst_diff = (0, 0)
            worst_percent_diff = (0, 0)
            for old, new in zip(expected_results, new_results):
                try:
                    oldkey, oldval, tol = self.__sanitize_results_string(old)
                    newkey, newval, _ = self.__sanitize_results_string(new)
                except ValueError as e:
                    errorstr = "The results: {0} could not be parsed. Error: {1}".format(new, str(e))
                    errors.append(errorstr)
                    continue
    
&gt;               assert oldkey == newkey, f"Expected key {oldkey} does not match new key {newkey}."
                       ^^^^^^^^^^^^^^^^
E               AssertionError: Expected key s13.hsd_imaging.uid___A002_X85c183_X36f.ms.atmcor.field_1.spw_17.qa.metric.line_emission_off_range_at_peak does not match new key s13.hsd_imaging.uid___A002_X85c183_X36f.ms.atmcor.field_1.spw_17.qa.metric.score_sd_line_emission_off_range_at_peak.

tests/testing_utils.py:409: AssertionError</failure></testcase><testcase classname="tests.regression.fast.vlass_fast_test" name="test_TSKY0001__vlass_quicklook_regression" file="tests/regression/fast/vlass_fast_test.py" line="6" time="598.018" /></testsuite></testsuites>