Skip to content

Commit

Permalink
Remove Tk backend build from Github CI (#2956)
Browse files Browse the repository at this point in the history
With a semi-recent change in matplotlib, this started flaking at a very high rate,
and it's never turned up an actual issue, so I don't think we need it.
  • Loading branch information
mwaskom committed Aug 14, 2022
1 parent b5c4c35 commit 6cf4f26
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/ci.yaml
Expand Up @@ -2,7 +2,7 @@ name: CI

on:
push:
branches: [master, nextgen/**]
branches: [master, v0.*]
pull_request:
branches: master
workflow_dispatch:
Expand Down Expand Up @@ -48,24 +48,16 @@ jobs:
target: [test]
install: [full]
deps: [latest]
backend: [agg]

include:
- python: "3.7"
target: unittests
install: full
deps: pinned
backend: agg
- python: "3.10"
target: unittests
install: light
deps: latest
backend: agg
- python: "3.10"
target: test
install: full
deps: latest
backend: tkagg

steps:
- uses: actions/checkout@v3
Expand All @@ -87,11 +79,7 @@ jobs:
run: python ci/cache_test_datasets.py

- name: Run tests
env:
MPLBACKEND: ${{ matrix.backend }}
run: |
if [[ ${{ matrix.backend }} == 'tkagg' ]]; then PREFIX='xvfb-run -a'; fi
$PREFIX make ${{ matrix.target }}
run: make ${{ matrix.target }}

- name: Upload coverage
uses: codecov/codecov-action@v2
Expand Down

0 comments on commit 6cf4f26

Please sign in to comment.