Skip to content
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
39 changes: 0 additions & 39 deletions .github/workflows/license-audit.yml

This file was deleted.

11 changes: 6 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
os: ['ubuntu-latest']
include:
- python-version: '3.5'
os: 'ubuntu-20.04'
pip-trusted-host: 'pypi.python.org pypi.org files.pythonhosted.org'
- python-version: '3.6'
os: 'ubuntu-20.04'
# Python 3.5 and 3.6 tests skipped pending PLAT-14414
# - python-version: '3.5'
# os: 'ubuntu-22.04'
# pip-trusted-host: 'pypi.python.org pypi.org files.pythonhosted.org'
# - python-version: '3.6'
# os: 'ubuntu-22.04'
- python-version: '3.7'
os: 'ubuntu-22.04'

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ htmlcov
my_env
venv
.idea
*.iml
1 change: 1 addition & 0 deletions tests/integrations/test_asgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ async def index(req):
assert breadcrumbs[0]['metaData'] == {'to': '/'}
assert breadcrumbs[0]['type'] == BreadcrumbType.NAVIGATION.value

@pytest.mark.skip(reason="Skipped pending PLAT-14413")
def test_websocket_crash(self):
async def app(scope, receive, send):
websocket = WebSocket(scope, receive=receive, send=send)
Expand Down