-
Notifications
You must be signed in to change notification settings - Fork 17
44 lines (44 loc) · 1.35 KB
/
test_ci.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
name: Autotester tests
on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
- '3.10'
- 3.11
- 3.12
test-dir:
- client
- server
name: ${{ matrix.test-dir }} tests with python ${{ matrix.python-version }}
env:
AUTOTESTER_CONFIG: server/autotest_server/tests/fixtures/test_config.yml
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install python packages
run: python -m pip install pytest fakeredis typing-extensions -r ${{ matrix.test-dir }}/requirements.txt
- name: Create users
run: |
sudo adduser --disabled-login --no-create-home fake_user
sudo adduser --disabled-login --no-create-home fake_user_2
- name: run tests
run: pytest ${{ matrix.test-dir }}