Skip to content

Commit

Permalink
Update demobuilder.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas committed Sep 16, 2023
1 parent b0dc44b commit 758c984
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/demobuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import os
import re
import time
from multiprocessing import Process

import requests
Expand Down Expand Up @@ -105,6 +106,8 @@ def set_demo_bulletin():
if __name__ == '__main__':
p = Process(target=launch_app)
p.start()
# Wait for the app to start
time.sleep(10)
set_demo_bulletin()
generate_demo()
p.terminate()

0 comments on commit 758c984

Please sign in to comment.