From b291298910ff1affdab041d14923b4a6b2113306 Mon Sep 17 00:00:00 2001 From: mattijn Date: Sat, 18 Feb 2023 10:39:50 +0100 Subject: [PATCH] exclude altair_saver in build.yml --- .github/workflows/build.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d6886a33..ff90df0f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,29 +15,29 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Set Up Chromedriver - run: | - sudo apt-get update - sudo apt-get --only-upgrade install google-chrome-stable - sudo apt-get -yqq install chromium-chromedriver + # - name: Set Up Chromedriver + # run: | + # sudo apt-get update + # sudo apt-get --only-upgrade install google-chrome-stable + # sudo apt-get -yqq install chromium-chromedriver - name: Install dependencies run: | python -m pip install --upgrade pip pip install .[dev] - pip install "selenium<4.3.0" - pip install altair_saver + # pip install "selenium<4.3.0" + # pip install altair_saver - name: Test with pytest run: | pytest --doctest-modules tests - - name: Selected tests without vl-convert-python - run: | - pip uninstall vl-convert-python --yes - pytest -m save_engine --doctest-modules tests - - name: Selected tests without vl-convert-python and altair_saver - run: | - pip uninstall altair_saver --yes - pytest -m save_engine --doctest-modules tests + # - name: Selected tests without vl-convert-python + # run: | + # pip uninstall vl-convert-python --yes + # pytest -m save_engine --doctest-modules tests + # - name: Selected tests without vl-convert-python and altair_saver + # run: | + # pip uninstall altair_saver --yes + # pytest -m save_engine --doctest-modules tests - name: Selected tests with vl-convert-python and without altair_saver run: | - pip install vl-convert-python + # pip install vl-convert-python pytest -m save_engine --doctest-modules tests