Fails because of https://gitlab.com/graphviz/graphviz/-/issues/1745.
script:
- ci/install-packages.sh
- export GV_VERSION=$( cat VERSION )
+ - export build_system="autotools"
- python3 -m pytest --junitxml=report.xml tests rtest
artifacts:
reports:
import subprocess
import os
+# FIXME: Remove skip when
+# https://gitlab.com/graphviz/graphviz/-/issues/1745 is fixed
+@pytest.mark.skipif(
+ os.getenv('build_system') == 'msbuild',
+ reason='Windows msbuild executables have the wrong version (#1745)'
+)
def test_installation():
expected_version = os.environ['GV_VERSION']
actual_version_string = subprocess.check_output(