Skip to content

Commit

Permalink
Merge pull request #22 from djpugh/fix/manual-release
Browse files Browse the repository at this point in the history
  • Loading branch information
djpugh authored Nov 28, 2020
2 parents e98f8b7 + 7d9bce0 commit 9166d01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
name: Pipeline

on:
workflow_dispatch:
push:
branches-ignore:
- gh-pages
tags-ignore:
- docs-*
pull_request:
release:
types: [published]
types: [published, edited]

jobs:
lint:
Expand Down
3 changes: 1 addition & 2 deletions tests/testapp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,5 @@ async def test(request):
auth_provider.configure_app(app)



if __name__ == "__main__":
uvicorn.run(app, host='0.0.0.0', debug=True, port=8000, log_level='debug')
uvicorn.run('server:app', host='0.0.0.0', debug=True, port=8000, log_level='debug', reload=True)

0 comments on commit 9166d01

Please sign in to comment.