From 52dbabb83679224a01da01ae6ad25ab9fcf24e18 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Thu, 1 Feb 2024 08:10:17 -0700 Subject: [PATCH] more tidy removing extended --- .github/workflows/test.yml | 37 ++++++++++++------------------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c37c84b2..6b175ce2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 \ No newline at end of file