Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9be78dd
Add client with custom environment
ajrice6713 Sep 20, 2021
e9df6a0
Force failure
ajrice6713 Sep 20, 2021
2262293
Set slack notifications to run only on failed tests
ajrice6713 Sep 20, 2021
804df55
Try using the testrunner
ajrice6713 Sep 20, 2021
578ce3a
revert test runner changes
ajrice6713 Sep 20, 2021
c9b17f5
Remove unittest lib and replace with pytest
ajrice6713 Sep 20, 2021
698e30d
include pytest in requirements
ajrice6713 Sep 20, 2021
c5967b6
Minor Clean up and revert purposeful failure
ajrice6713 Sep 20, 2021
e71e6c4
Rename files to fit pytest schema
ajrice6713 Sep 21, 2021
28b02da
Add POST Messaging Tests
ajrice6713 Sep 21, 2021
f371c1e
Add messaging media tests
ajrice6713 Sep 21, 2021
0add519
Add calls testing
ajrice6713 Sep 21, 2021
28c7183
Update Naming Conventions
ajrice6713 Sep 22, 2021
797e687
tests tests tests
ajrice6713 Sep 22, 2021
5c69a89
Final tests and cleanup
ajrice6713 Sep 22, 2021
e99095d
First crack at bxml
ajrice6713 Sep 22, 2021
c8cd07c
Add WebRTC tests
ajrice6713 Sep 22, 2021
c22d1cf
Fix some PEP8 Stuff
ajrice6713 Sep 22, 2021
7f34a30
More formatting
ajrice6713 Sep 22, 2021
44716f7
Update .github/workflows/validate.yaml
ajrice6713 Sep 22, 2021
f73e2c3
Update bandwidth/tests/test_bxml.py
ajrice6713 Sep 22, 2021
051e9b6
Update bandwidth/tests/test_api.py
ajrice6713 Sep 22, 2021
631edad
Move print statements higher in the stack so that they actually get p…
ajrice6713 Sep 23, 2021
4511bbb
Use a random number for MFA verify
ajrice6713 Sep 23, 2021
2e1cd1a
Merge branch 'DX-2209' of https://github.com/Bandwidth/python-sdk int…
ajrice6713 Sep 23, 2021
ed41836
Delete test-requirements.txt
ajrice6713 Sep 23, 2021
269c193
Update .gitkeep
ajrice6713 Sep 23, 2021
30b786e
Update .gitignore
ajrice6713 Sep 23, 2021
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
4 changes: 1 addition & 3 deletions .github/actions/validate/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#!/bin/sh

pip install -r requirements.txt
python -m unittest tests.integration.bxml_tests
python -m unittest tests.integration.api_tests
python -m unittest tests.integration.webrtc_bxml_tests
pytest --pyargs bandwidth
2 changes: 1 addition & 1 deletion .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
USER_NUMBER: ${{ secrets.USER_NUMBER }}
BASE_CALLBACK_URL: ${{ secrets.BASE_CALLBACK_URL }}
- uses: Bandwidth/build-notify-slack-action@v1.0.0
if: always()
if: failure() && !github.event.pull_request.draft
with:
job-status: ${{ job.status }}
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@

.DS_Store
.idea/
*.pyc
.pytest_cache/
2 changes: 1 addition & 1 deletion .gitkeep
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
README.md
bandwidth/voice/bxml/*
bandwidth/webrtc/utils/*
tests/integration/*
bandwidth/tests/*
File renamed without changes.
Loading