8000 fix flake · scikit-learn/scikit-learn@59d060b · GitHub
[go: up one dir, main page]

Skip to content

Commit 59d060b

Browse files
committed
fix flake
1 parent a23ce3b commit 59d060b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# caution: testing won't work on windows, see README
44

5-
PYTHON ?= python3
6-
CYTHON ?= cython3
7-
NOSETESTS ?= nosetests-3.4
5+
PYTHON ?= python
6+
CYTHON ?= cython
7+
NOSETESTS ?= nosetests
88
CTAGS ?= ctags
99

1010
# skip doctests on 32bit python

sklearn/gaussian_process/tests/test_kernels.py

Lines changed: 1 addition & 1 deletion
5A5B
Original file line numberDiff line numberDiff line change
@@ -311,4 +311,4 @@ def test_repr_kernels():
311311
"""Smoke-test for repr in kernels."""
312312

313313
for kernel in kernels:
314-
kernel_repr = repr(kernel)
314+
repr(kernel)

0 commit comments

Comments
 (0)
0