-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (40 loc) · 975 Bytes
/
tests.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
name: Django Tests
on:
push:
branches:
- main
- coverage
pull_request:
branches:
- main
- coverage
jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
build:
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install Dependencies
run: |
cd ScheduleBuilder
pip install -r requirements.txt
- name: Run Account Tests
env:
CAL_ID: c_6ed17073345c64d5b392f5a8ef7b4a62938f12c8fc5fecfa4b7256ef88acad28@group.calendar.google.com
run: |
cd ScheduleBuilder
python manage.py makemigrations
python manage.py migrate
cd account
pytest regtests.py