File tree Expand file tree Collapse file tree 2 files changed +16
-45
lines changed Expand file tree Collapse file tree 2 files changed +16
-45
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -49,10 +49,22 @@ jobs:
49
49
environment-file : ci/deps/${{ matrix.env_file }}
50
50
pyarrow-version : ${{ matrix.os == 'macos-latest' && '6' || '' }}
51
51
52
- - name : Build pandas
52
+ - name : Build Pandas
53
53
uses : ./.github/actions/build_pandas
54
54
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
57
67
with :
58
- check-pyarrow-version : ${{ matrix.pyarrow_version }}
68
+ flags : unittests
69
+ name : codecov-pandas
70
+ fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments