nova-api/.github/workflows/tests.yml

35 lines
776 B
YAML
Raw Normal View History

2023-08-13 03:23:59 +02:00
name: Python Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
2023-08-19 16:06:34 +02:00
python-version: 3.x
2023-08-13 03:23:59 +02:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
2023-08-17 13:29:50 +02:00
2023-08-17 13:48:05 +02:00
- name: Start API server
2023-08-17 13:29:50 +02:00
env:
MONGO_URI: ${{ secrets.MONGO_URI }}
2023-08-19 16:11:54 +02:00
NOVA_KEY: ${{ secrets.NOVA_KEY }}
2023-08-13 03:23:59 +02:00
run: |
python run
- name: Wait for API server to start
run: sleep 10 # We can adjust this sleep duration as needed. idk how long the server takes to start
- name: Run tests
run: python tests