diff --git a/.cirrus.yml b/.cirrus.yml index f2dedae1..9a40cf36 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,5 +1,5 @@ freebsd_instance: - image_family: freebsd-13-2 + image_family: freebsd-14-1 iocage_tests_task: create_pool_script: @@ -7,13 +7,15 @@ iocage_tests_task: - zpool create pool /root/poolfile install_pkgs_script: - sed -i '' 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf - - pkg install -y git python3 py39-sqlite3 + - pkg install -y git python3 py311-sqlite3 + - pkg install -y rust configure_python_script: - python3 -m ensurepip pip_cache: folder: ~/.cache/pip populate_script: - - python3 install -r requirements-test.txt + - python3 -m pip install -r requirements-test.txt + - python3 -m pip install -r requirements.txt - python3 -m pip install -U cython env_setup_script: - python3 -m pip install -U -r requirements-test.txt diff --git a/tests/conftest.py b/tests/conftest.py index f4a7ab6d..fbb84389 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -37,7 +37,7 @@ def pytest_addoption(parser): help='Specify a zpool to use.' ) parser.addoption( - '--release', action='store', default='12.2-RELEASE', + '--release', action='store', default='14.1-RELEASE', help='Specify a RELEASE to use.' ) parser.addoption(