Fix CI platform:conda:macos-* tests
Description
Fix the platform:conda:macos-* tests
tests and remove allow_failure: true
.
The lal_tconvert
failures are fixed by:
- Hard-coding the time zone to
"UTC"
when printing UTC dates; - Set the time zone to UTC before printing UTC dates.
Another failure in test_synthesizeTransientStats.sh
came from using seq
with very large (GPS second) numbers which were being printed in exponential form. Instead use seq -f '%.0f'
to ensure it generates decimal numbers. (Made the same change in testPredictFstat.sh
just in case. Other uses of seq
are with small integers.)
API Changes and Justification
Backwards Compatible Changes
-
This change does not modify any class/function/struct/type definitions in a public C header file or any Python class/function definitions -
This change adds new classes/functions/structs/types to a public C header file or Python module
Backwards Incompatible Changes
-
This change modifies an existing class/function/struct/type definition in a public C header file or Python module -
This change removes an existing class/function/struct/type from a public C header file or Python module