Skip to content

Commit

Permalink
skip testing generate_pdf example until issue with pycairo is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
falkoschindler committed Jan 6, 2025
1 parent 0f55770 commit c063791
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test_startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c063791

Please sign in to comment.