Skip to content

Commit

Permalink
test: check graph model as well as loading
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr authored Jun 16, 2024
1 parent a7bab86 commit bac4c5f
Showing 1 changed file with 65 additions and 7 deletions.
72 changes: 65 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,28 @@ on:
- not-a-branch
pull_request: null

env:
PY_COLORS: "1"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
bot:
name: check graph loads
tests-load-graph:
name: tests-load-graph
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
steps:
- uses: actions/checkout@v4
with:
path: cf-graph

- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
python-version: 3.11
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
Expand All @@ -30,7 +37,7 @@ jobs:

- name: install bot code
run: |
mamba install -y -q pygithub requests git pytest
conda install -y -q pygithub requests git pytest
git config --global user.name regro-cf-autotick-bot
git config --global user.email [email protected]
Expand All @@ -44,7 +51,7 @@ jobs:
git clone --depth=1 https://github.com/regro/cf-scripts.git
pushd cf-scripts
conda env update --file environment.yml
python -m pip install -e .
python -m pip install --no-deps --no-build-isolation -e .
popd
git clone --depth=1 https://github.com/conda-forge/conda-forge-pinning-feedstock.git
Expand All @@ -54,3 +61,54 @@ jobs:
pushd cf-graph
pytest -vv test_load_graph.py
popd
tests-model:
name: tests-model
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
with:
path: cf-graph

- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.11
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
miniforge-variant: Mambaforge
activate-environment: cf-scripts

- name: install bot code
run: |
conda install -y -q pygithub requests git pytest
git config --global user.name regro-cf-autotick-bot
git config --global user.email [email protected]
git config --global pull.rebase false
conda config --env --set add_pip_as_python_dependency False
conda info
conda config --show-sources
conda list --show-channel-urls
git clone --depth=1 https://github.com/regro/cf-scripts.git
pushd cf-scripts
conda env update --file environment.yml
python -m pip install --no-deps --no-build-isolation -e .
popd
git clone --depth=1 https://github.com/conda-forge/conda-forge-pinning-feedstock.git
- name: check graph model
continue-on-error: true
run: |
pushd cf-graph
pytest \
--durations 10 \
../tests/model
popd

0 comments on commit bac4c5f

Please sign in to comment.