-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (40 loc) · 1.07 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Run Tests
env:
TESTING: true
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20.5.0'
- name: Install Node.js Dependencies
run: npm install
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10.10'
- name: Setup Python Virtual Environment
run: python -m venv python3-virtualenv
- name: Activate Virtual Environment and Install Dependencies
run: |
source python3-virtualenv/bin/activate
pip install -r api-server/requirements.txt
- name: Run Flask Server in Background
run: |
source python3-virtualenv/bin/activate
python api-server/app.py &
sleep 5 # Ensure server has time to start
- name: Run Tests
run: npm run test