diff --git a/tests/integration/targets/pkgng/tasks/freebsd.yml b/tests/integration/targets/pkgng/tasks/freebsd.yml index b06f5a0333..abf5f2aaed 100644 --- a/tests/integration/targets/pkgng/tasks/freebsd.yml +++ b/tests/integration/targets/pkgng/tasks/freebsd.yml @@ -461,10 +461,15 @@ # NOTE: FreeBSD 12.0 test runner receives a "connection reset by peer" after ~20% downloaded so we are # only running this on 12.1 or higher # + # NOTE: FreeBSD 13.0 fails to update the package catalogue for unknown reasons (someone with FreeBSD + # knowledge has to take a look) + # # NOTE: FreeBSD 13.1 fails to update the package catalogue for unknown reasons (someone with FreeBSD # knowledge has to take a look) # - when: ansible_distribution_version is version('12.01', '>=') and ansible_distribution_version is version('13.1', '<') + when: >- + (ansible_distribution_version is version('12.01', '>=') and ansible_distribution_version is version('13.0', '<')) + or ansible_distribution_version is version('13.2', '>=') block: - name: Setup testjail include: setup-testjail.yml