Skip to content

Commit da94ea1

Browse files
committed
tests: updates (including typo fix upstream
1 parent dc676e9 commit da94ea1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ install:
1919
if ($env:PYTHON) {
2020
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
2121
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
22-
python -m pip install --disable-pip-version-check --user --upgrade pip setuptools
22+
python -m pip install --disable-pip-version-check --upgrade --no-warn-script-location pip setuptools
2323
} elseif ($env:CONDA) {
2424
if ($env:CONDA -eq "27") { $env:CONDA = "" }
2525
if ($env:PLATFORM -eq "x64") { $env:CONDA = "$env:CONDA-x64" }

.github/workflows/wheels.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
env:
1414
CIBW_TEST_COMMAND: python {project}/tests/test.py
15-
CIBW_BEFORE_BUILD: pip install git+https://github.com/pybind/pybind11.git@master
15+
CIBW_BEFORE_BUILD: pip install cmake git+https://github.com/pybind/pybind11.git@master
1616

1717

1818
jobs:
@@ -41,6 +41,7 @@ jobs:
4141
name: Wheels on ${{ matrix.os }}
4242
runs-on: ${{ matrix.os }}
4343
strategy:
44+
fail-fast: false
4445
matrix:
4546
os: [ubuntu-latest, windows-latest, macos-latest]
4647

0 commit comments

Comments
 (0)