test: ignore numpy ndarry size changed warning #1258
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: [ main ] | |
push: | |
branches: [ main ] | |
jobs: | |
build-and-deploy: | |
defaults: | |
run: | |
# Ensures environment gets sourced right | |
shell: bash -l {0} | |
name: Python (${{ matrix.PYTHON_VERSION }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
PYTHON_VERSION: ["3.9", "3.10", "3.11"] | |
env: | |
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add /etc/hosts entries | |
run: | | |
cat .github/workflows/etchosts.txt | sudo tee -a /etc/hosts | |
# setup conda-forge with micromamba | |
- name: Setup Python | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment.yml | |
condarc: | | |
channels: | |
- conda-forge | |
- defaults | |
create-args: >- | |
python=${{ env.PYTHON_VERSION }} | |
environment-name: prod | |
cache-environment: true | |
- name: Setup Postgres | |
run: | | |
git clone --depth 1 https://github.com/akrherz/iem-database.git database | |
git clone --depth 1 https://github.com/akrherz/ci_tooling.git .ci_tooling | |
. .ci_tooling/postgres.sh | |
cd database; sh bootstrap.sh | |
python schema_manager.py | |
python store_test_data.py | |
psql -f data/postgis/cwsu.db -U mesonet postgis | |
- name: Setup Memcached | |
run: | | |
. .ci_tooling/memcached.sh | |
- name: Install Python requirements from pip | |
run: | | |
# mod_wsgi is here and needs apxs from above | |
python -m pip install -r pip_requirements.txt | |
- name: Install pyiem | |
run: | | |
set -e | |
python -m pip install . --upgrade --no-deps | |
python util/insert_testing_data.py | |
# xdist and coverage seems to necessitate this | |
python -m pytest --cov=pyiem -n 4 --mpl --mpl-results-path=mplresults | |
python -m coverage xml | |
- name: Code coverage | |
if: ${{ matrix.PYTHON_VERSION == '3.11' }} | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.xml | |
- name: Build Docs | |
if: ${{ matrix.PYTHON_VERSION == '3.11' }} | |
run: | | |
conda install sphinx | |
cd docs | |
make html | |
touch build/html/.nojekyll | |
- name: Deploy Docs | |
if: ${{ matrix.PYTHON_VERSION == '3.11' }} | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
BASE_BRANCH: main # The branch the action should deploy from. | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: docs/build/html # The folder the action should deploy. This example folder is generated by Sphinx |