File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,10 @@ build: false
22
33environment :
44 matrix :
5- - PYTHON_VERSION : 2.7
6- MINICONDA : C:\Miniconda-x64
5+ - PYTHON_VERSION : 3.8
6+ MINICONDA : C:\Miniconda38-x64
7+ - PYTHON_VERSION : 3.7
8+ MINICONDA : C:\Miniconda37-x64
79
810init :
911 - " ECHO %PYTHON_VERSION% %MINICONDA%"
@@ -13,15 +15,15 @@ install:
1315 - conda config --set always_yes yes --set changeps1 no
1416 - conda update -q conda
1517 - conda info -a
16- - conda create --name lightfm numpy scipy scikit-learn
18+ - conda create --name lightfm -c conda-forge numpy scipy scikit-learn
1719 - activate lightfm
1820
1921 # Install the build dependencies of the project.
20- - conda install --yes --file test-requirements.txt
22+ - conda install -c conda-forge - -yes --file test-requirements.txt
2123
2224 # Install lightfm
2325 - pip install -e .
2426
2527test_script :
2628 # Run the project tests
27- - py.test tests/ -x
29+ - pytest tests/
You can’t perform that action at this time.
0 commit comments