Revert "Add workflow for testing with all deps (#4410)"

This reverts commit 80558b5b27.
This commit is contained in:
Eugene Yurtsev
2023-05-10 15:16:13 -04:00
parent b2f920e891
commit 11e8457606
8 changed files with 7 additions and 322 deletions

View File

@@ -20,13 +20,15 @@ jobs:
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry==$POETRY_VERSION
- name: Set up Python ${{ matrix.python-version }}
uses: "./.github/actions/poetry_setup"
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
poetry-version: "1.4.2"
cache-key: "main"
install-command: "poetry install"
cache: "poetry"
- name: Install dependencies
run: poetry install
- name: Run unit tests
run: |
make test

View File

@@ -1,33 +0,0 @@
# Run unit tests with all optional packages installed.
name: test_all
on:
push:
branches: [master]
pull_request:
env:
POETRY_VERSION: "1.4.2"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: "./.github/actions/poetry_setup"
with:
python-version: ${{ matrix.python-version }}
poetry-version: "1.4.2"
cache-key: "extended"
install-command: "poetry install -E extended_testing"
- name: Run unit tests
run: |
make test