PYTHON-3690 Do not install unittest-xml-reporting on MacOS EG Hosts (#1200)

This commit is contained in:
Steven Silvester 2023-05-01 12:24:18 -05:00 committed by GitHub
parent deb0566c3e
commit 3f1e960c4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,10 @@ createvirtualenv () {
fi
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel unittest-xml-reporting
python -m pip install --upgrade setuptools wheel
# lxml only has wheels for macos 10.15+
python -m pip install unittest-xml-reporting || true
}
# Usage: