File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ build : false
2+
3+ environment :
4+ matrix :
5+ - PYTHON : " C:\\ Miniconda36-x64"
6+ PY : 3.7
7+
8+ init :
9+ - " ECHO %PYTHON_VERSION% %MINICONDA%"
10+
11+ install :
12+ # Install and configure miniconda.
13+ - " set PATH=%PYTHON%;%PYTHON%\\ Scripts;%PATH%"
14+ - conda config --set always_yes yes --set changeps1 no --set show_channel_urls true
15+ - conda update conda --quiet
16+ - conda config --add channels conda-forge --force
17+ - conda install pycryptosat
18+ - conda config --set safety_checks disabled
19+
20+ # Create the test env.
21+ - conda create --name TEST python=%PY% --file requirements.txt --file requirements-dev.txt
22+ - activate TEST
23+
24+ # Debug.
25+ - conda info --all
26+ - conda list
27+
28+ test_script :
29+ - pip install -e . --no-deps --force-reinstall
30+ - pytest -n 2 -rxXs tests
Original file line number Diff line number Diff line change 2222pillow
2323pycodestyle
2424pytest
25+ pytest-cov
26+ pytest-flake8
27+ pytest-xdist
2528scipy
2629selenium
2730sphinx
You can’t perform that action at this time.
0 commit comments