more tidy removing extended

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

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