8000 More fixes · scikit-learn/scikit-learn@81322f2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 81322f2

Browse files
committed
More fixes
1 parent 195a581 commit 81322f2

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

appveyor.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ environment:
3434
PYTHON_ARCH: "64"
3535

3636

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+
3744

3845
install:
3946
# If there is a newer build queued for the same PR, cancel this one.
@@ -73,7 +80,7 @@ test_script:
7380
# installed library.
7481
- mkdir "../empty_folder"
7582
- cd "../empty_folder"
76-
- pytest -v --showlocals --durations=20 --pyargs sklearn
83+
- pytest --showlocals --durations=20 --pyargs sklearn
7784
# Move back to the project folder
7885
- cd "../scikit-learn"
7986

sklearn/feature_extraction/_hashing.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Author: Lars Buitinck
22
# License: BSD 3 clause
33

4-
import os
54
import sys
65
import array
76
from cpython cimport array

sklearn/feature_extraction/text.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from operator import itemgetter
2020
import re
2121
import unicodedata
22-
import sys
2322

2423
import numpy as np
2524
import scipy.sparse as sp

0 commit comments

Comments
 (0)
0