Browse Source

skip testing generate_pdf example until issue with pycairo is fixed

Falko Schindler 4 months ago
parent
commit
c063791b21
1 changed files with 5 additions and 0 deletions
  1. 5 0
      test_startup.sh

+ 5 - 0
test_startup.sh

@@ -39,6 +39,11 @@ check() {
 check main.py || exit 1
 for path in examples/*
 do
+    # Skip examples/generate_pdf
+    if [[ $path == "examples/generate_pdf" ]]; then
+        continue # until https://github.com/pygobject/pycairo/issues/387 is fixed
+    fi
+
     # Skip examples/sqlite_database for Python 3.11 and 3.12
     if [[ $(python3 --version | cut -d' ' -f2 | cut -d'.' -f1,2) =~ ^3.1[12]$ ]] && [[ $path == "examples/sqlite_database" ]]; then
         continue # until https://github.com/omnilib/aiosqlite/issues/241 is fixed