more tidy removing extended

pull/378/head
evelynmitchell 1 year ago
parent e8ff1b13a5
commit 52dbabb836

@ -27,36 +27,24 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
poetry-version: "1.4.2" poetry-version: "1.4.2"
cache-key: ${{ matrix.test_type }}
install-command: install-command:
if [ "${{ matrix.test_type }}" == "core" ]; then
echo "Running core tests, installing dependencies with poetry..." echo "Running core tests, installing dependencies with poetry..."
poetry install poetry install
else - name: Run core tests
echo "Running extended tests, installing dependencies with poetry..." run: pytest
poetry install -E extended_testing
fi
- name: Run ${{matrix.test_type}} tests
run: make test
shell: bash shell: bash
- name: Python ${{ matrix.python-version }} ${{ matrix.test_type }} - name: Python ${{ matrix.python-version }} core
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: "actions/setup-python@v2" uses: "actions/setup-python@v2"
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
poetry-version: "1.4.2" poetry-version: "1.4.2"
cache-key: ${{ matrix.test_type }}
install-command: | install-command: |
if [ "${{ matrix.test_type }}" == "core" ]; then
echo "Running core tests, installing dependencies with poetry..." echo "Running core tests, installing dependencies with poetry..."
poetry install poetry install
else - name: Run core tests
echo "Running extended tests, installing dependencies with poetry..." run: pytest
poetry install -E extended_testing
fi
- name: Run ${{matrix.test_type}} tests
run: make test
shell: bash shell: bash
build: build:
@ -68,7 +56,7 @@ jobs:
- "3.9" - "3.9"
- "3.10" - "3.10"
- "3.11" - "3.11"
name: Python ${{ matrix.python-version }} ${{ matrix.test_type }} name: Python ${{ matrix.python-version }} core
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
@ -76,10 +64,9 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
poetry-version: "1.4.2" poetry-version: "1.4.2"
cache-key: ${{ matrix.test_type }}
install-command: | install-command: |
echo "Running core tests, installing dependencies with poetry..." echo "Running core tests, installing dependencies with poetry..."
poetry install poetry install
- name: Run ${{matrix.test_type}} tests - name: Run core tests
run: make test run: pytest
shell: bash shell: bash
Loading…
Cancel
Save