Skip to content
Snippets Groups Projects
Commit 96d727a0 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

exempt some examples from tests for Python < 3.9, as dict | is unsupported

parent 4792cbb0
No related branches found
No related tags found
1 merge request!2510exempt some examples from tests for Python < 3.9, as dict | is unsupported
Pipeline #139384 passed
...@@ -150,8 +150,10 @@ run_example(fit/specular/Specular1Par) ...@@ -150,8 +150,10 @@ run_example(fit/specular/Specular1Par)
run_example(fq/Sphere) run_example(fq/Sphere)
test_example(offspec/Offspec1 2e-10) test_example(offspec/Offspec1 2e-10)
test_example(offspec/OffspecLambda 2e-10) # issue #711 if (Python3_VERSION_MINOR GREATER 8)
test_example(offspec/OffspecResolved 2e-10) # issue #711 test_example(offspec/OffspecLambda 2e-10) # issue #711
test_example(offspec/OffspecResolved 2e-10) # issue #711
endif()
test_example(scatter2d/ApproximationDA 2e-10) test_example(scatter2d/ApproximationDA 2e-10)
test_example(scatter2d/ApproximationLMA 2e-10) test_example(scatter2d/ApproximationLMA 2e-10)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment