3232 python -m pip install poetry
3333 poetry self add poetry-plugin-export
3434 poetry export -f requirements.txt --with dev -o requirements.txt --all-extras
35- python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
35+ python -m pip install torch --index-url https://download.pytorch.org/whl/cpu || true
3636 python -m pip install -r requirements.txt
3737 python -m pip install .
3838 - name : Test with pytest
5757 python -m pip install poetry
5858 poetry self add poetry-plugin-export
5959 poetry export -f requirements.txt --with dev -o requirements.txt --all-extras
60- python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
60+ python -m pip install torch --index-url https://download.pytorch.org/whl/cpu || true
6161 python -m pip install -r requirements.txt
6262 python -m pip install .
6363 - name : Test with pytest
@@ -106,7 +106,7 @@ jobs:
106106 python -m pip install poetry
107107 poetry self add poetry-plugin-export
108108 poetry export -f requirements.txt --with dev -o requirements.txt --all-extras
109- python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
109+ python -m pip install torch --index-url https://download.pytorch.org/whl/cpu || true
110110 python -m pip install -r requirements.txt
111111 python -m pip install .
112112 - name : Test with pytest
@@ -131,12 +131,12 @@ jobs:
131131 python -m pip install poetry
132132 poetry self add poetry-plugin-export
133133 poetry export -f requirements.txt --with dev -o requirements.txt --all-extras
134- python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
134+ python -m pip install torch --index-url https://download.pytorch.org/whl/cpu || true
135135 python -m pip install -r requirements.txt
136136 python -m pip install .
137137 - name : Test with pytest
138138 env :
139- SIMVUE_URL : ${{ secrets.SIMVUE_URL }}
139+ SIMVUE_URL : " ${{ secrets.SIMVUE_URL }}"
140140 SIMVUE_TOKEN : ${{ secrets.SIMVUE_TOKEN }}
141141 run : >-
142142 python -m pytest -x
0 commit comments