Skip to content

Commit

Permalink
Disable blockdiag tests on github.
Browse files Browse the repository at this point in the history
Blockdiag will not work with current versions of
Pillow and older versions refuse to install.
  • Loading branch information
pepijnve committed Feb 2, 2025
1 parent 443eca5 commit c9c0e7a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ jobs:
echo "$PWD/Umlet" >> $GITHUB_PATH
- name: Install MSCgen
run: npm install --global mscgenjs-cli
- name: Install Blockdiag
run: pip install blockdiag[pdf] actdiag seqdiag nwdiag[pdf]
# - name: Install Blockdiag
# run: pip install blockdiag[pdf] actdiag seqdiag nwdiag[pdf]
- name: Install svgbob
run: |
cargo install svgbob_cli
Expand Down
6 changes: 3 additions & 3 deletions spec/blockdiag_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
}
eos

describe Asciidoctor::Diagram::BlockDiagInlineMacroProcessor do
describe Asciidoctor::Diagram::BlockDiagInlineMacroProcessor, :broken_on_github do
include_examples "inline_macro", :blockdiag, BLOCKDIAG_CODE, [:png, :svg, :pdf]
end

describe Asciidoctor::Diagram::BlockDiagBlockMacroProcessor do
describe Asciidoctor::Diagram::BlockDiagBlockMacroProcessor, :broken_on_github do
include_examples "block_macro", :blockdiag, BLOCKDIAG_CODE, [:png, :svg, :pdf]
end

describe Asciidoctor::Diagram::BlockDiagBlockProcessor do
describe Asciidoctor::Diagram::BlockDiagBlockProcessor, :broken_on_github do
include_examples "block", :blockdiag, BLOCKDIAG_CODE, [:png, :svg, :pdf]
end

0 comments on commit c9c0e7a

Please sign in to comment.