Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mongodb/mongo-python-driver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.1.1
Choose a base ref
...
head repository: mongodb/mongo-python-driver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing 1,572 changed files with 355,096 additions and 111,140 deletions.
25 changes: 0 additions & 25 deletions .coveragerc

This file was deleted.

37 changes: 0 additions & 37 deletions .evergreen/build-mac.sh

This file was deleted.

41 changes: 0 additions & 41 deletions .evergreen/build-manylinux-internal.sh

This file was deleted.

45 changes: 0 additions & 45 deletions .evergreen/build-manylinux.sh

This file was deleted.

28 changes: 0 additions & 28 deletions .evergreen/build-windows.sh

This file was deleted.

23 changes: 23 additions & 0 deletions .evergreen/combine-coverage.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash
#
# Coverage combine merges (and removes) all the coverage files and
# generates a new .coverage file in the current directory.

set -eu

. .evergreen/utils.sh

if [ -z "${PYTHON_BINARY:-}" ]; then
PYTHON_BINARY=$(find_python3)
fi

createvirtualenv "$PYTHON_BINARY" covenv
# Keep in sync with run-tests.sh
# coverage >=5 is needed for relative_files=true.
pip install -q "coverage[toml]>=5,<=7.5"

pip list
ls -la coverage/

python -m coverage combine coverage/coverage.*
python -m coverage html -d htmlcov
Loading