File tree 3 files changed +8
-3
lines changed 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,13 @@ environment:
34
34
PYTHON_ARCH : " 64"
35
35
36
36
37
+ # Because we only have a single worker, we don't want to waste precious
38
+ # appveyor CI time and make other PRs wait for repeated failures in a failing
39
+ # PR. The following option cancels pending jobs in a given PR after the first
40
+ # job failure in that specific PR.
41
+ matrix :
42
+ fast_finish : true
43
+
37
44
38
45
install :
39
46
# If there is a newer build queued for the same PR, cancel this one.
@@ -73,7 +80,7 @@ test_script:
73
80
# installed library.
74
81
- mkdir "../empty_folder"
75
82
- cd "../empty_folder"
76
- - pytest -v - -showlocals --durations=20 --pyargs sklearn
83
+ - pytest --showlocals --durations=20 --pyargs sklearn
77
84
# Move back to the project folder
78
85
- cd "../scikit-learn"
79
86
Original file line number Diff line number Diff line change 1
1
# Author: Lars Buitinck
2
2
# License: BSD 3 clause
3
3
4
- import os
5
4
import sys
6
5
import array
7
6
from cpython cimport array
Original file line number Diff line number Diff line change 19
19
from operator import itemgetter
20
20
import re
21
21
import unicodedata
22
- import sys
23
22
24
23
import numpy as np
25
24
import scipy .sparse as sp
You can’t perform that action at this time.
0 commit comments