Sphinx Docstring - SeeAlso for all plotting #2026
Workflow file for this run
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 | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
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 |