forked from vesoft-inc/nebula-python
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (57 loc) · 1.73 KB
/
run_test.yaml
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
name: Test ci
on:
push:
branches: [master,'release-**']
pull_request:
branches: [master,'release-**']
schedule:
- cron: "0 6 * * *"
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
max-parallel: 2
matrix:
python-version: [3.7]
steps:
- name: Maximize runner space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 1024
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: lint
run: make fmt-check
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install -r requirements/dev.txt
- name: Test with pytest
run: |
docker-compose -f docker-compose.yaml up -d
sleep 20
pytest -s -v -k "not SSL" --cov=../nebula3 --cov-report=xml --cov-append
working-directory: tests
- name: Test SSL connection with pytest
run: |
enable_ssl=true docker-compose -f docker-compose-ssl.yaml up -d
sleep 20
pytest -s -v -k "SSL" --cov=../nebula3 --cov-report=xml --cov-append
working-directory: tests
- name: Test Example
run: |
docker-compose -f ../tests/docker-compose.yaml up -d
sleep 20
for f in *.py; do python "$f"; done
working-directory: example
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./tests/coverage.xml