-
Notifications
You must be signed in to change notification settings - Fork 46
47 lines (46 loc) · 1.45 KB
/
master-codecov.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
name: CI and Codecov
on:
push:
branches:
- master
jobs:
codecov:
name: Codecov Workflow
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.9, "3.10", 3.11]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up a Vertica server
timeout-minutes: 15
run: |
docker pull vertica/vertica-ce:latest
docker run -d -p 5433:5433 -p 5444:5444 \
--name vertica_docker \
vertica/vertica-ce
echo "Vertica startup ..."
until docker exec vertica_docker test -f /data/vertica/VMart/agent_start.out; do \
echo "..."; \
sleep 3; \
done;
echo "Vertica is up"
docker exec -u dbadmin vertica_docker /opt/vertica/bin/vsql -c "\l"
docker exec -u dbadmin vertica_docker /opt/vertica/bin/vsql -c "select version();"
- name: Install dependencies
run: pip install tox
- name: Run tests
run: |
export VP_TEST_USER=dbadmin
tox -e py -- --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests