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

Sanic routing #2010

Merged
merged 33 commits into from
Feb 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a0066e5
Initial
ahopkins Jan 19, 2021
f8f2157
squash
ahopkins Jan 19, 2021
933d005
squash
ahopkins Jan 19, 2021
1f0f4ef
remove testmanager
ahopkins Jan 19, 2021
76ef641
Resolve tests
ahopkins Jan 25, 2021
c32e7fd
Resolve tests
ahopkins Jan 25, 2021
792a72b
Initial introduction of sanic-routing
ahopkins Jan 26, 2021
5f79291
additional compat support
ahopkins Jan 26, 2021
33d7f4d
Breakup App and Bluieprint
ahopkins Jan 26, 2021
dadf76c
Move logic into mixins
ahopkins Jan 27, 2021
e945979
Finish moving some more logic to mixins
ahopkins Jan 27, 2021
e04f206
Add SanicBase
ahopkins Jan 28, 2021
7b47a4b
squash
ahopkins Jan 31, 2021
94e5f82
squash
ahopkins Feb 1, 2021
96cc49e
fix method ignore on websocket route
ahopkins Feb 1, 2021
3f1e9ff
Clean up use cases:
ahopkins Feb 3, 2021
967c4e6
Clean up use cases
ahopkins Feb 3, 2021
a434ffa
interim
ahopkins Feb 3, 2021
c08b153
Resolve some more tests
ahopkins Feb 7, 2021
0d5b2a0
debug and working stage--squash
ahopkins Feb 8, 2021
64f0496
ASGI working
ahopkins Feb 8, 2021
5f17e95
worker
ahopkins Feb 8, 2021
6b68c37
Temp performance testing
ahopkins Feb 9, 2021
b850e49
test coverage with param change
ahopkins Feb 9, 2021
b89f9a5
static performance increase
ahopkins Feb 9, 2021
e91b3d4
squash
ahopkins Feb 15, 2021
6057da7
Resolve test suite
ahopkins Feb 15, 2021
5377a6e
squash
ahopkins Feb 15, 2021
55a5ab4
squash
ahopkins Feb 15, 2021
7f63ad5
Add some test coverage
ahopkins Feb 15, 2021
a913e71
test coverage
ahopkins Feb 15, 2021
3753190
Merge branch 'master' of github.com:sanic-org/sanic into sanic-routing
ahopkins Feb 15, 2021
bb5501f
Merge branch 'master' into sanic-routing
ahopkins Feb 16, 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: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ ifdef include_tests
isort -rc sanic tests
else
$(info Sorting Imports)
isort -rc sanic tests
isort -rc sanic tests --profile=black
endif
endif

black:
black --config ./.black.toml sanic tests

fix-import: black
isort sanic tests
isort sanic tests --profile=black


docs-clean:
Expand Down
Loading