Merge branch 'NovaOSS:main' into main

This commit is contained in:
Game_Time 2023-08-20 15:29:44 +05:00 committed by GitHub
commit 1a2ab86bad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View file

@ -24,9 +24,7 @@ jobs:
pip install -r requirements.txt
pip install uvicorn
- name: Start API server
- name: Start API server & run tests!
run: |
python run
- name: Run tests
run: python tests

View file

@ -14,6 +14,7 @@ Runs for production on the speicified port.
import os
import sys
import time
port = sys.argv[1] if len(sys.argv) > 1 else 2332
dev = True
@ -23,3 +24,10 @@ if 'prod' in sys.argv:
dev = False
os.system(f'cd api && uvicorn main:app{" --reload" if dev else ""} --host 0.0.0.0 --port {port}')
time.sleep(2)
os.system('python tests')