Merge pull request #376 from neutrinoceros/cli/bug/no_progressbar_wit… #249
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 (bleeding-edge) | |
# weekly check for stability against dev version of | |
# - numpy | |
# - matplotlib, | |
# - scipy | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/workflows/bleeding-edge.yml | |
schedule: | |
# run this once a week (wednesday) at 3 am UTC | |
- cron: 0 3 * * 3 | |
workflow_dispatch: | |
jobs: | |
tests: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
name: Test nightly dependencies | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13-dev | |
- uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: | | |
**/requirements/test_all.txt | |
**/pyproject.toml | |
- name: Build | |
run: | | |
uv venv | |
uv pip install numpy matplotlib scipy --pre --no-build --extra-index-url \ | |
https://pypi.anaconda.org/scientific-python-nightly-wheels/simple | |
uv pip install . | |
uv pip install --requirement requirements/tests_all.txt | |
- run: uv pip list | |
- name: Run pytest | |
run: | | |
source .venv/bin/activate | |
pytest --color=yes -ra |