-
Notifications
You must be signed in to change notification settings - Fork 7
151 lines (124 loc) · 4.13 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: Test
on:
push:
# as every commit on main leads to a release tag
# we do not want to test every commit on main
# but only every release tag
tags:
- v*
pull_request:
concurrency:
cancel-in-progress: true
group: test-${{ github.ref }}
jobs:
##############################################################################
## Full linting/checking running on all branches
##############################################################################
pre-commit:
name: Run full linting on project using pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python and Poetry
uses: ./.github/actions/python-poetry
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version-file: "./app/package.json"
cache: npm
cache-dependency-path: "**/package-lock.json"
- name: Install dependencies
run: |
npm ci --prefix app
npm run sync --prefix app
npm ci --prefix e2e
pip install pre-commit
- name: Run linting
run: SKIP=no-commit-to-branch pre-commit run --all-files
##############################################################################
## Python backend tests
##############################################################################
pytest:
name: Run pytest tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Hasura CLI
uses: ./.github/actions/hasura-cli
- name: Setup Python and Poetry
uses: ./.github/actions/python-poetry
- name: Install dependencies
working-directory: ./backend
run: poetry install
- name: Run pytest
run: |
cp .env.test.sample .env.test
./scripts/launch_tests.sh python
##############################################################################
## End To End Tests
##############################################################################
e2e:
name: Run CodeceptJS tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version-file: "./app/package.json"
cache: npm
cache-dependency-path: "**/package-lock.json"
- name: Install dependencies
run: |
npm ci --prefix e2e
npm ci --prefix app
- name: Install Hasura CLI
uses: ./.github/actions/hasura-cli
- name: Setup Python and Poetry
uses: ./.github/actions/python-poetry
- name: Install Python dependencies
working-directory: ./backend
run: poetry install
- name: Run test e2e
run: |
cp .env.test.sample .env.test
./scripts/launch_tests.sh e2e
- name: Copy artifact
if: failure()
uses: actions/upload-artifact@v3
with:
name: screenshot
path: e2e/output
##############################################################################
## Functional Tests (endpoints & hasura)
##############################################################################
functional_tests:
name: Run functional tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version-file: "./app/package.json"
cache: npm
cache-dependency-path: "**/package-lock.json"
- name: Install dependencies
run: |
npm ci --prefix app
npm run sync --prefix app
- name: Install Hasura CLI
uses: ./.github/actions/hasura-cli
- name: Setup Python and Poetry
uses: ./.github/actions/python-poetry
- name: Install Python dependencies
working-directory: ./backend
run: poetry install
- name: Run functional tests
run: |
cp .env.test.sample .env.test
./scripts/launch_tests.sh js