Skip to content

Commit 2ad15da

Browse files
committed
don't assert latex compilation to speed up tests
1 parent 9cbc4b9 commit 2ad15da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
- uses: actions/checkout@v2
38-
- name: Install system dependencies
39-
run: sudo apt-get install -y texlive-latex-base texlive-latex-extra context python3-tk
38+
# - name: Install system dependencies
39+
# run: sudo apt-get install -y texlive-latex-base texlive-latex-extra context python3-tk
4040
- name: Test with tox
4141
run: |
4242
pip install tox

test/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _unidiff_output(expected, actual):
3131

3232

3333
def assert_equality(
34-
plot, filename, assert_compilation=True, flavor="latex", **extra_get_tikz_code_args
34+
plot, filename, assert_compilation=False, flavor="latex", **extra_get_tikz_code_args
3535
):
3636
plot()
3737
code = tikzplotlib.get_tikz_code(

0 commit comments

Comments
 (0)