File tree 9 files changed +3
-67
lines changed
9 files changed +3
-67
lines changed Original file line number Diff line number Diff line change 4
4
types : created
5
5
6
6
jobs :
7
- one :
7
+ issue_assign :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- if : github.event.comment.body == 'take'
11
- name :
12
11
run : |
13
12
echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}"
14
13
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -d '{"assignees": ["${{ github.event.comment.user.login }}"]}' https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees
Original file line number Diff line number Diff line change 49
49
run : |
50
50
source activate pandas-dev
51
51
ci/run_tests.sh
52
-
53
- - name : Print skipped tests
54
- run : python ci/print_skipped.py
Original file line number Diff line number Diff line change 40
40
- name : Build documentation
41
41
run : |
42
42
source activate pandas-dev
43
- doc/make.py --warnings-are-errors | tee sphinx.log ; exit ${PIPESTATUS[0]}
44
-
45
- # This can be removed when the ipython directive fails when there are errors,
46
- # including the `tee sphinx.log` in te previous step (https://github.com/ipython/ipython/issues/11547)
47
- - name : Check ipython directive errors
48
- run : " ! grep -B10 \" ^<<<-------------------------------------------------------------------------$\" sphinx.log"
43
+ doc/make.py --warnings-are-errors
49
44
50
45
- name : Install ssh key
51
46
run : |
Original file line number Diff line number Diff line change @@ -150,9 +150,6 @@ jobs:
150
150
path : test-data.xml
151
151
if : failure()
152
152
153
- - name : Print skipped tests
154
- run : python ci/print_skipped.py
155
-
156
153
- name : Upload coverage to Codecov
157
154
uses : codecov/codecov-action@v2
158
155
with :
Original file line number Diff line number Diff line change 85
85
path : test-data.xml
86
86
if : failure()
87
87
88
- - name : Print skipped tests
89
- run : |
90
- python ci/print_skipped.py
91
-
92
88
- name : Report Coverage
93
89
run : |
94
90
coverage report -m
Original file line number Diff line number Diff line change 61
61
testResultsFiles : ' test-data.xml'
62
62
testRunTitle : ${{ format('{0}-$(CONDA_PY)', parameters.name) }}
63
63
displayName : ' Publish test results'
64
-
65
- - script : |
66
- source activate pandas-dev
67
- python ci/print_skipped.py
68
- displayName: 'Print skipped tests'
Original file line number Diff line number Diff line change 79
79
testResultsFiles : ' test-data.xml'
80
80
testRunTitle : ${{ format('{0}-$(CONDA_PY)', parameters.name) }}
81
81
displayName : ' Publish test results'
82
-
83
- - bash : |
84
- source activate pandas-dev
85
- python ci/print_skipped.py
86
- displayName: 'Print skipped tests'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
24
24
XVFB=" xvfb-run "
25
25
fi
26
26
27
- PYTEST_CMD=" ${XVFB} pytest -m \" $PATTERN \" -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET "
27
+ PYTEST_CMD=" ${XVFB} pytest -r fEs - m \" $PATTERN \" -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET "
28
28
29
29
if [[ $( uname) != " Linux" && $( uname) != " Darwin" ]]; then
30
30
PYTEST_CMD=" $PYTEST_CMD --ignore=pandas/tests/plotting/"
You can’t perform that action at this time.
0 commit comments