Show More
@@ -1,39 +1,39 | |||
|
1 | 1 | name: Build docs |
|
2 | 2 | |
|
3 | 3 | on: [push, pull_request] |
|
4 | 4 | |
|
5 | 5 | permissions: |
|
6 | 6 | contents: read |
|
7 | 7 | |
|
8 | 8 | jobs: |
|
9 | 9 | build: |
|
10 | 10 | runs-on: ubuntu-latest |
|
11 | 11 | |
|
12 | 12 | steps: |
|
13 | 13 | - uses: actions/checkout@v4 |
|
14 | 14 | - name: Set up Python |
|
15 | 15 | uses: actions/setup-python@v5 |
|
16 | 16 | with: |
|
17 | 17 | python-version: 3.x |
|
18 | 18 | - name: Install Graphviz |
|
19 | 19 | run: | |
|
20 | 20 | sudo apt-get update |
|
21 | 21 | sudo apt-get install graphviz |
|
22 | 22 | - name: Install Python dependencies |
|
23 | 23 | run: | |
|
24 | 24 | python -m pip install --upgrade pip setuptools coverage rstvalidator |
|
25 | 25 | pip install -r docs/requirements.txt |
|
26 | 26 | - name: Build docs |
|
27 | 27 | run: | |
|
28 | 28 | python -m rstvalidator long_description.rst |
|
29 | 29 | python tools/fixup_whats_new_pr.py |
|
30 | 30 | make -C docs/ html SPHINXOPTS="-W" \ |
|
31 | 31 | PYTHON="coverage run -a" \ |
|
32 | 32 | SPHINXBUILD="coverage run -a -m sphinx.cmd.build" |
|
33 | 33 | - name: Generate coverage xml |
|
34 | 34 | run: | |
|
35 | 35 | coverage combine `find . -name .coverage\*` && coverage xml |
|
36 | 36 | - name: Upload coverage to Codecov |
|
37 |
uses: codecov/codecov-action@v |
|
|
37 | uses: codecov/codecov-action@v5 | |
|
38 | 38 | with: |
|
39 | 39 | name: Docs |
@@ -1,109 +1,109 | |||
|
1 | 1 | name: Run tests |
|
2 | 2 | |
|
3 | 3 | on: |
|
4 | 4 | push: |
|
5 | 5 | branches: |
|
6 | 6 | - main |
|
7 | 7 | - '*.x' |
|
8 | 8 | pull_request: |
|
9 | 9 | # Run weekly on Monday at 1:23 UTC |
|
10 | 10 | schedule: |
|
11 | 11 | - cron: '23 1 * * 1' |
|
12 | 12 | workflow_dispatch: |
|
13 | 13 | |
|
14 | 14 | |
|
15 | 15 | jobs: |
|
16 | 16 | test: |
|
17 | 17 | runs-on: ${{ matrix.os }} |
|
18 | 18 | # Disable scheduled CI runs on forks |
|
19 | 19 | if: github.event_name != 'schedule' || github.repository_owner == 'ipython' |
|
20 | 20 | strategy: |
|
21 | 21 | fail-fast: false |
|
22 | 22 | matrix: |
|
23 | 23 | os: [ubuntu-latest, windows-latest] |
|
24 | 24 | python-version: ["3.10", "3.11", "3.12","3.13"] |
|
25 | 25 | deps: [test_extra] |
|
26 | 26 | # Test all on ubuntu, test ends on macos |
|
27 | 27 | include: |
|
28 | 28 | - os: macos-latest |
|
29 | 29 | python-version: "3.10" |
|
30 | 30 | deps: test_extra |
|
31 | 31 | - os: macos-latest |
|
32 | 32 | python-version: "3.11" |
|
33 | 33 | deps: test_extra |
|
34 | 34 | # Tests minimal dependencies set |
|
35 | 35 | - os: ubuntu-latest |
|
36 | 36 | python-version: "3.11" |
|
37 | 37 | deps: test |
|
38 | 38 | # Tests latest development Python version |
|
39 | 39 | - os: ubuntu-latest |
|
40 | 40 | python-version: "3.13" |
|
41 | 41 | deps: test |
|
42 | 42 | # Installing optional dependencies stuff takes ages on PyPy |
|
43 | 43 | - os: ubuntu-latest |
|
44 | 44 | python-version: "pypy-3.10" |
|
45 | 45 | deps: test |
|
46 | 46 | - os: windows-latest |
|
47 | 47 | python-version: "pypy-3.10" |
|
48 | 48 | deps: test |
|
49 | 49 | - os: macos-latest |
|
50 | 50 | python-version: "pypy-3.10" |
|
51 | 51 | deps: test |
|
52 | 52 | # Temporary CI run to use entry point compatible code in matplotlib-inline. |
|
53 | 53 | - os: ubuntu-latest |
|
54 | 54 | python-version: "3.12" |
|
55 | 55 | deps: test_extra |
|
56 | 56 | want-latest-entry-point-code: true |
|
57 | 57 | |
|
58 | 58 | steps: |
|
59 | 59 | - uses: actions/checkout@v4 |
|
60 | 60 | - name: Set up Python ${{ matrix.python-version }} |
|
61 | 61 | uses: actions/setup-python@v5 |
|
62 | 62 | with: |
|
63 | 63 | python-version: ${{ matrix.python-version }} |
|
64 | 64 | cache: pip |
|
65 | 65 | cache-dependency-path: | |
|
66 | 66 | pyproject.toml |
|
67 | 67 | - name: Install latex |
|
68 | 68 | if: runner.os == 'Linux' && matrix.deps == 'test_extra' |
|
69 | 69 | run: echo "disable latex for now, issues in mirros" #sudo apt-get -yq -o Acquire::Retries=3 --no-install-suggests --no-install-recommends install texlive dvipng |
|
70 | 70 | - name: Install and update Python dependencies (binary only) |
|
71 | 71 | if: ${{ ! contains( matrix.python-version, 'dev' ) }} |
|
72 | 72 | run: | |
|
73 | 73 | python -m pip install --only-binary ':all:' --upgrade pip setuptools wheel build |
|
74 | 74 | python -m pip install --only-binary ':all:' --no-binary curio --upgrade -e .[${{ matrix.deps }}] |
|
75 | 75 | python -m pip install --only-binary ':all:' --upgrade check-manifest pytest-cov 'pytest<8' |
|
76 | 76 | - name: Install and update Python dependencies (dev?) |
|
77 | 77 | if: ${{ contains( matrix.python-version, 'dev' ) }} |
|
78 | 78 | run: | |
|
79 | 79 | python -m pip install --pre --upgrade pip setuptools wheel build |
|
80 | 80 | python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --no-binary curio --upgrade -e .[${{ matrix.deps }}] |
|
81 | 81 | python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --upgrade check-manifest pytest-cov |
|
82 | 82 | - name: Try building with Python build |
|
83 | 83 | if: runner.os != 'Windows' # setup.py does not support sdist on Windows |
|
84 | 84 | run: | |
|
85 | 85 | python -m build |
|
86 | 86 | shasum -a 256 dist/* |
|
87 | 87 | - name: Check manifest |
|
88 | 88 | if: runner.os != 'Windows' # setup.py does not support sdist on Windows |
|
89 | 89 | run: check-manifest |
|
90 | 90 | |
|
91 | 91 | - name: Install entry point compatible code (TEMPORARY) |
|
92 | 92 | if: matrix.want-latest-entry-point-code |
|
93 | 93 | run: | |
|
94 | 94 | python -m pip list |
|
95 | 95 | # Not installing matplotlib's entry point code as building matplotlib from source is complex. |
|
96 | 96 | # Rely upon matplotlib to test all the latest entry point branches together. |
|
97 | 97 | python -m pip install --upgrade git+https://github.com/ipython/matplotlib-inline.git@main |
|
98 | 98 | python -m pip list |
|
99 | 99 | |
|
100 | 100 | - name: pytest |
|
101 | 101 | env: |
|
102 | 102 | COLUMNS: 120 |
|
103 | 103 | run: | |
|
104 | 104 | pytest --color=yes -raXxs ${{ startsWith(matrix.python-version, 'pypy') && ' ' || '--cov --cov-report=xml' }} --maxfail=15 |
|
105 | 105 | - name: Upload coverage to Codecov |
|
106 |
uses: codecov/codecov-action@v |
|
|
106 | uses: codecov/codecov-action@v5 | |
|
107 | 107 | with: |
|
108 | 108 | name: Test |
|
109 | 109 | files: /home/runner/work/ipython/ipython/coverage.xml |
General Comments 0
You need to be logged in to leave comments.
Login now