Making the "filter" method more consistent. (#804) #367
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, 3.12] | |
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 |