From 7dee136ea3744a65f4f131eb8c51bd8c3ea58b46 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Thu, 10 Feb 2022 00:31:15 -0600 Subject: [PATCH] Don't apply to Minimum supported dependencies workflow --- .github/workflows/lower-bound-requirements.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lower-bound-requirements.yml b/.github/workflows/lower-bound-requirements.yml index 957a744631..d6c2e949d4 100644 --- a/.github/workflows/lower-bound-requirements.yml +++ b/.github/workflows/lower-bound-requirements.yml @@ -34,5 +34,8 @@ jobs: - name: Test with pytest run: | + # Disable error on filterwarnings as testing for oldest releases that work with latest API, + # not the oldest releases that are warning free + sed -i '/"error",/d' pyproject.toml # Run on tests/ to skip doctests of src given examples are for latest APIs - pytest --ignore tests/benchmarks/ --ignore tests/contrib --ignore tests/test_notebooks.py tests/ + pytest --disable-pytest-warnings --ignore tests/benchmarks/ --ignore tests/contrib --ignore tests/test_notebooks.py tests/