Skip to content

Commit 4d22885

Browse files
committed
Undo run-tests
1 parent 94b2567 commit 4d22885

File tree

2 files changed

+16
-45
lines changed

2 files changed

+16
-45
lines changed

.github/actions/run-tests/action.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/workflows/macos-windows.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,22 @@ jobs:
4949
environment-file: ci/deps/${{ matrix.env_file }}
5050
pyarrow-version: ${{ matrix.os == 'macos-latest' && '6' || '' }}
5151

52-
- name: Build pandas
52+
- name: Build Pandas
5353
uses: ./.github/actions/build_pandas
5454

55-
- name: Run tests
56-
uses: ./.github/actions/run-tests
55+
- name: Test
56+
run: ci/run_tests.sh
57+
58+
- name: Publish test results
59+
uses: actions/upload-artifact@v3
60+
with:
61+
name: Test results
62+
path: test-data.xml
63+
if: failure()
64+
65+
- name: Upload coverage to Codecov
66+
uses: codecov/codecov-action@v2
5767
with:
58-
check-pyarrow-version: ${{ matrix.pyarrow_version }}
68+
flags: unittests
69+
name: codecov-pandas
70+
fail_ci_if_error: false

0 commit comments

Comments
 (0)