Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix OIDC self-test #448

Merged
merged 2 commits into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .evergreen/auth_oidc/azure/remote-scripts/run-self-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ pushd ./drivers-evergreen-tools/.evergreen/auth_oidc
# Run the Python Driver Test
git clone https://github.com/mongodb/mongo-python-driver
pushd mongo-python-driver
python setup.py install --no_ext
pip install -U -q pip
pip install .
popd
pip install -q requests
python azure/remote-scripts/test.py
Expand Down
4 changes: 2 additions & 2 deletions .evergreen/auth_oidc/gcp/remote-scripts/run-self-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ pushd mongo-python-driver
python3 -m venv .venv
source .venv/bin/activate
pip install -U -q pip
pip install -U -q requests setuptools
python setup.py -q install --no_ext
pip install -U -q requests
pip install .
popd
echo "Installing dependencies ... end"

Expand Down
Loading