1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-10 23:50:12 +00:00

Merge branch '344-add-ci-stage-to-test-uvicorn' into 'develop'

Resolve "Add CI stage to test uvicorn"

Closes 

See merge request 
This commit is contained in:
Bram Wiepjes 2021-03-08 16:50:38 +00:00
commit 1ec644e465
2 changed files with 3 additions and 0 deletions

View file

@ -64,3 +64,5 @@ backend-setup:
script:
- pip install -e ./backend
- python -c 'import baserow'
- export DJANGO_SETTINGS_MODULE='baserow.config.settings.demo'
- timeout --preserve-status 10s gunicorn --workers=1 -b 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker baserow.config.asgi:application

View file

@ -3,6 +3,7 @@
## Unreleased
* Prevent websocket reconnect loop when the authentication fails.
* Added gunicorn worker test to the CI pipeline.
## Released (2021-03-01)