Skip to content

Commit f08c964

Browse files
committed
use bash as default
1 parent 1478be1 commit f08c964

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ jobs:
4141
name: Test Minimal (Py ${{ matrix.python-version }}, ${{ matrix.os }})
4242
needs: code-quality
4343
runs-on: ${{ matrix.os }}
44+
defaults:
45+
run:
46+
shell: bash
4447
strategy:
4548
fail-fast: false
4649
matrix:
@@ -88,15 +91,7 @@ jobs:
8891
"
8992
9093
- name: Test algebraic and engineering functions
91-
run: |
92-
python -m pytest -x -p no:warnings \
93-
tests/test_1d_functions.py \
94-
tests/test_2d_functions.py \
95-
tests/test_nd_functions.py \
96-
tests/test_all_test_functions.py \
97-
tests/test_api/test_input_type.py \
98-
tests/test_api/test_metric.py \
99-
tests/test_api/test_sleep.py
94+
run: python -m pytest -x -p no:warnings tests/test_1d_functions.py tests/test_2d_functions.py tests/test_nd_functions.py tests/test_all_test_functions.py tests/test_api/test_input_type.py tests/test_api/test_metric.py tests/test_api/test_sleep.py
10095

10196
# ===========================================================================
10297
# Stage 3: Test with Full Dependencies
@@ -105,6 +100,9 @@ jobs:
105100
name: Test Full (Py ${{ matrix.python-version }}, ${{ matrix.os }})
106101
needs: code-quality
107102
runs-on: ${{ matrix.os }}
103+
defaults:
104+
run:
105+
shell: bash
108106
strategy:
109107
fail-fast: false
110108
matrix:

0 commit comments

Comments
 (0)