Skip to content

Commit 5efb8fd

Browse files
authored
Remove workaround codes for CI (AtsushiSakai#455)
* remove workaround codes * remove workaround codes * remove workaround codes
1 parent e30696a commit 5efb8fd

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

.circleci/config.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ jobs:
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

.github/workflows/Linux_CI.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ jobs:
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

.github/workflows/MacOS_CI.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,8 @@ jobs:
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

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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:
4342
build: off
4443

4544
test_script:
46-
- "python -Wignore -m unittest discover tests"
45+
- "pytest tests -Werror --durations=0"

0 commit comments

Comments
 (0)