make test changes

This commit is contained in:
Brad Warren 2026-03-20 13:22:37 -07:00
parent d50cd96b57
commit ff7d64283d
2 changed files with 2 additions and 12 deletions

View file

@ -6,14 +6,10 @@ stages:
pool:
vmImage: ubuntu-latest
steps:
- task: DownloadSecureFile@1
name: webhook_url
inputs:
secureFile: mattermost_webhook_url_release_notify
- bash: |
set -e
python -m venv venv
source venv/bin/activate
tools/pip_install.py requests
tools/notify_mattermost.py" $(webhook_url.secureFilePath)
"${BUILD_REPOSITORY_LOCALPATH}/tools/notify_mattermost.py"
displayName: Send mattermost message

View file

@ -91,10 +91,4 @@ def get_content():
}
return content
response = requests.request(
method='POST',
url=get_mattermost_url(),
headers=get_headers(),
json=get_content(),
)
response.raise_for_status()
print(get_content())