Skip to content

Commit b7a04d9

Browse files
committed
surpress warnings on action
1 parent e5e2377 commit b7a04d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-ultraplot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ jobs:
7777
git fetch origin ${{ github.event.pull_request.base.sha }}
7878
git checkout ${{ github.event.pull_request.base.sha }}
7979
python -c "import ultraplot as plt; plt.config.Configurator()._save_yaml('ultraplot.yml')"
80-
pytest --mpl-generate-path=baseline --mpl-default-style="./ultraplot.yml"
80+
pytest -W ignore --mpl-generate-path=baseline --mpl-default-style="./ultraplot.yml"
8181
git checkout ${{ github.sha }} # Return to PR branch
8282
8383
- name: Image Comparison Ultraplot
8484
run: |
8585
mkdir -p results
8686
python -c "import ultraplot as plt; plt.config.Configurator()._save_yaml('ultraplot.yml')"
87-
pytest --mpl --mpl-baseline-path=baseline --mpl-generate-summary=html --mpl-results-path=./results/ --mpl-default-style="./ultraplot.yml" --store-failed-only ultraplot/tests
87+
pytest -W ignore --mpl --mpl-baseline-path=baseline --mpl-generate-summary=html --mpl-results-path=./results/ --mpl-default-style="./ultraplot.yml" --store-failed-only ultraplot/tests
8888
8989
# Return the html output of the comparison even if failed
9090
- name: Upload comparison failures

0 commit comments

Comments
 (0)