Skip to content

Commit 700960a

Browse files
authored
Merge branch 'master' into PYTHON-4815
2 parents e39192e + 7e904b3 commit 700960a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+3907
-475
lines changed

.evergreen/config.yml

Lines changed: 1196 additions & 266 deletions
Large diffs are not rendered by default.

.evergreen/hatch.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,13 @@ else # Set up virtualenv before installing hatch
2929
# Ensure hatch does not write to user or global locations.
3030
touch hatch_config.toml
3131
HATCH_CONFIG=$(pwd)/hatch_config.toml
32+
if [ "Windows_NT" = "$OS" ]; then # Magic variable in cygwin
33+
HATCH_CONFIG=$(cygpath -m "$HATCH_CONFIG")
34+
fi
3235
export HATCH_CONFIG
3336
hatch config restore
34-
hatch config set dirs.data ".hatch/data"
35-
hatch config set dirs.cache ".hatch/cache"
37+
hatch config set dirs.data "$(pwd)/.hatch/data"
38+
hatch config set dirs.cache "$(pwd)/.hatch/cache"
3639

3740
run_hatch() {
3841
python -m hatch run "$@"

.evergreen/run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -o xtrace
3030

3131
AUTH=${AUTH:-noauth}
3232
SSL=${SSL:-nossl}
33-
TEST_SUITES=""
33+
TEST_SUITES=${TEST_SUITES:-}
3434
TEST_ARGS="${*:1}"
3535

3636
export PIP_QUIET=1 # Quiet by default

0 commit comments

Comments
 (0)