We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5304048 commit f3592a6Copy full SHA for f3592a6
.github/workflows/python-dev.yml
@@ -17,19 +17,15 @@ env:
17
PANDAS_CI: 1
18
PATTERN: "not slow and not network and not clipboard"
19
COVERAGE: true
20
+ PYTEST_TARGET: pandas
21
22
jobs:
23
build:
24
runs-on: ${{ matrix.os }}
25
strategy:
26
fail-fast: false
27
matrix:
- os: [ubuntu-latest, macOS-latest]
28
- pytest_target: ["pandas/tests/[a-h]*", "pandas/tests/[i-z]*"]
29
- include:
30
- # No need to split tests on windows
31
- - os: windows-latest
32
- pytest_target: pandas
+ os: [ubuntu-latest, macOS-latest, windows-latest]
33
34
name: actions-310-dev
35
timeout-minutes: 80
@@ -67,8 +63,6 @@ jobs:
67
63
python -c "import pandas; pandas.show_versions();"
68
64
69
65
- name: Test with pytest
70
- env:
71
- PYTEST_TARGET: ${{ matrix.pytest_target }}
72
66
shell: bash
73
run: |
74
ci/run_tests.sh
0 commit comments