File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ RUN pip3 install Cython nose pytest
11
11
12
12
RUN cd scikit-learn && pip3 install -e .
13
13
14
- RUN pytest sklearn
14
+ RUN cd scikit-learn && pytest sklearn
Original file line number Diff line number Diff line change @@ -16,10 +16,8 @@ RUN conda create -n sklearn-env numpy scipy cython pytest nose docutils python=3
16
16
RUN echo "dash dash/sh boolean false" | debconf-set-selections && \
17
17
DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash
18
18
19
- RUN conda activate sklearn-env && \
19
+ RUN source activate sklearn-env && \
20
20
git clone https://github.com/scikit-learn/scikit-learn.git && \
21
- cd scikit-learn && git checkout master
21
+ cd scikit-learn && git checkout master && pip install -e .
22
22
23
- RUN make
24
-
25
- RUN pytest sklearn
23
+ RUN source activate sklearn-env && cd scikit-learn && pytest sklearn
You can’t perform that action at this time.
0 commit comments