Remove workaround codes for CI (#455)

* remove workaround codes

* remove workaround codes

* remove workaround codes
This commit is contained in:
Atsushi Sakai
2021-01-06 21:34:45 +09:00
committed by GitHub
parent e30696a25f
commit 5efb8fd0af
4 changed files with 2 additions and 9 deletions

View File

@@ -8,13 +8,11 @@ jobs:
docker:
- image: circleci/python:3.9
steps:
- run: sudo apt-get update && sudo apt-get install -y cmake # TODO: remove after osqp wheels released
- checkout
- python/load-cache
- run: pip install numpy # TODO: remove after osqp wheels released
- python/install-deps
- python/save-cache
- run: pip install sphinx sphinx-autobuild sphinx-rtd-theme
- run: pip install sphinx sphinx-autobuild sphinx-rtd-theme pytest
- run:
command: cd docs;make html
name: doc_build

View File

@@ -21,10 +21,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
# TODO: remove numpy installation after fix cvxpy install issue
run: |
python -m pip install --upgrade pip
pip install numpy
python -m pip install -r requirements.txt
- name: install coverage
run: pip install coverage

View File

@@ -23,10 +23,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
# TODO: remove numpy installation after fix cvxpy install issue
run: |
python -m pip install --upgrade pip
pip install numpy
pip install -r requirements.txt
- name: install coverage
run: pip install coverage

View File

@@ -33,7 +33,6 @@ install:
- SET PATH=%PYTHON%;%PYTHON%\Scripts;%PYTHON%\Library\bin;%PATH%
- SET PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin
- "python -m pip install --upgrade pip"
- "pip install numpy" # TODO: remove this line after osqp wheel released
- "python -m pip install -r requirements.txt"
# Check that we have the expected version and architecture for Python
@@ -43,4 +42,4 @@ install:
build: off
test_script:
- "python -Wignore -m unittest discover tests"
- "pytest tests -Werror --durations=0"