Skip to content

Commit

Permalink
Update CI on AppVeyor: use oldest and latest supported Python
Browse files Browse the repository at this point in the history
We do not want to test all Python versions on AppVeyor
because it takes too much time, but testing oldest and latest
is at least better than testing two old versions.
For this we need to change the base image.
  • Loading branch information
PhilippWendler committed Aug 6, 2024
1 parent e1b6c7f commit 913a360
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
# SPDX-FileCopyrightText: 2007-2024 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0

image: "Visual Studio 2022"

environment:
matrix:
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python39"
- PYTHON: "C:\\Python312"

build: off

install:
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
# The package installation via our setup.py file uses easy_install, which fails to correctly install lxml.
# As some Python environments don't have lxml preinstalled, install it here to avoid errors during the execution in those cases.
- python -m pip install --user ".[dev]"

test_script:
Expand Down

0 comments on commit 913a360

Please sign in to comment.