We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94b2567 commit 4d22885Copy full SHA for 4d22885
.github/actions/run-tests/action.yml
.github/workflows/macos-windows.yml
@@ -49,10 +49,22 @@ jobs:
49
environment-file: ci/deps/${{ matrix.env_file }}
50
pyarrow-version: ${{ matrix.os == 'macos-latest' && '6' || '' }}
51
52
- - name: Build pandas
+ - name: Build Pandas
53
uses: ./.github/actions/build_pandas
54
55
- - name: Run tests
56
- uses: ./.github/actions/run-tests
+ - name: Test
+ 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
67
with:
- check-pyarrow-version: ${{ matrix.pyarrow_version }}
68
+ flags: unittests
69
+ name: codecov-pandas
70
+ fail_ci_if_error: false
0 commit comments