File tree Expand file tree Collapse file tree 4 files changed +2
-9
lines changed Expand file tree Collapse file tree 4 files changed +2
-9
lines changed Original file line number Diff line number Diff line change 88 docker :
99 - image : circleci/python:3.9
1010 steps :
11- - run : sudo apt-get update && sudo apt-get install -y cmake # TODO: remove after osqp wheels released
1211 - checkout
1312 - python/load-cache
14- - run : pip install numpy # TODO: remove after osqp wheels released
1513 - python/install-deps
1614 - python/save-cache
17- - run : pip install sphinx sphinx-autobuild sphinx-rtd-theme
15+ - run : pip install sphinx sphinx-autobuild sphinx-rtd-theme pytest
1816 - run :
1917 command : cd docs;make html
2018 name : doc_build
Original file line number Diff line number Diff line change 2121 with :
2222 python-version : ${{ matrix.python-version }}
2323 - name : Install dependencies
24- # TODO: remove numpy installation after fix cvxpy install issue
2524 run : |
2625 python -m pip install --upgrade pip
27- pip install numpy
2826 python -m pip install -r requirements.txt
2927 - name : install coverage
3028 run : pip install coverage
Original file line number Diff line number Diff line change 2323 python-version : ${{ matrix.python-version }}
2424
2525 - name : Install dependencies
26- # TODO: remove numpy installation after fix cvxpy install issue
2726 run : |
2827 python -m pip install --upgrade pip
29- pip install numpy
3028 pip install -r requirements.txt
3129 - name : install coverage
3230 run : pip install coverage
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ install:
3333 - SET PATH=%PYTHON%;%PYTHON%\Scripts;%PYTHON%\Library\bin;%PATH%
3434 - SET PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin
3535 - " python -m pip install --upgrade pip"
36- - " pip install numpy" # TODO: remove this line after osqp wheel released
3736 - " python -m pip install -r requirements.txt"
3837
3938 # Check that we have the expected version and architecture for Python
@@ -43,4 +42,4 @@ install:
4342build : off
4443
4544test_script :
46- - " python -Wignore -m unittest discover tests "
45+ - " pytest tests -Werror --durations=0 "
You can’t perform that action at this time.
0 commit comments