mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 22:13:57 +01:00
35 lines
781 B
YAML
35 lines
781 B
YAML
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:
|
|
python-version: 3.x
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
|
|
- name: Start API server
|
|
env:
|
|
MONGO_URI: ${{ secrets.MONGO_URI }}
|
|
TEST_NOVA_KEY: ${{ secrets.NOVA_KEY }}
|
|
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
|