-
-
Notifications
You must be signed in to change notification settings - Fork 7
94 lines (79 loc) · 2.25 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
name: Test
on:
push:
branches: [latest]
paths:
- '**.py'
- '.github/workflows/test.yml'
- 'requirements_test.txt'
pull_request:
branches: [latest]
paths:
- '**.py'
- '**.yml'
- '.github/workflows/test.yml'
- 'requirements_test.txt'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements_test.txt >/dev/null
pip install -r requirements_build.txt >/dev/null
pip install -r requirements.txt >/dev/null
shell: bash
- name: Testing DB migrations for errors & warnings
run: |
m1=$(python3 manage.py makemigrations 2>&1)
if echo "$m1" | grep -q 'WARNING'; then exit 1;fi
m2=$(python3 manage.py migrate 2>&1)
if echo "$m2" | grep -q 'WARNING'; then exit 1;fi
m3=$(python3 manage.py migrate aw 2>&1)
if echo "$m3" | grep -q 'WARNING'; then exit 1;fi
shell: bash
working-directory: src/ansible-webui/
- name: Testing to start Ansible-WebUI
run: |
set +e
timeout 2 python3 src/ansible-webui
ec="$?"
if [[ "$ec" != "124" ]]
then
exit 1
fi
shell: bash
- name: Running Tests
run: python3 -m pytest
shell: bash
- name: Testing to build Ansible-WebUI with PIP
run: |
cd /tmp
echo 'CREATING TMP VENV'
tmp_venv="/tmp/ansible-webui-venv/$(date +%s)"
python3 -m virtualenv "$tmp_venv" >/dev/null
source "${tmp_venv}/bin/activate"
echo 'INSTALLING MODULE'
python3 -m pip install -e "$GITHUB_WORKSPACE" >/dev/null
set +e
echo 'RUNNING APP'
timeout 2 python3 -m ansible-webui
ec="$?"
echo 'CLEANUP'
deactivate
rm -rf "$tmp_venv"
if [[ "$ec" != "124" ]]
then
exit 1
fi
shell: bash