Changes between Version 97 and Version 98 of CI
- Timestamp:
- Sep 7, 2026, 9:26:23 PM (5 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CI
v97 v98 24 24 25 25 Some other builders run on all pull requests via GitHub actions: 26 * `black` - runs `black` from the root checkout directory and fails if there are any warnings. 27 * `flake8` - runs `flake8` from the root checkout directory and fails if there are any warnings. 28 * `docs` - runs `make spelling` from the `docs/` directory and fails if there are any spelling or sphinx errors. 29 * `isort` - runs `isort --check --diff .` from the root checkout directory and fails if any imports aren't [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/#imports sorted properly]. 26 * `Linters` - runs `black`, `flake8`, `isort`, `zizmor`, and `biome` 27 * `docs` - runs `make lint`, `make black`, and `make spelling` from the `docs/` directory and fails if there are any formatting, spelling, or sphinx errors. 30 28 * `JavaScript tests` - runs [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/javascript/#testing-from-the-command-line npm test] and fails if there are any errors 31 29 * `Windows tests` - runs with Python 3.14.x. 32 * ` Selenium tests` - runs the Selenium tests for any PR with the `selenium` label applied.30 * `Playwright tests` - runs the Playwright tests for any PR with the `playwright` label applied. 33 31 * `Benchmark` - Runs the [https://github.com/django/django-asv django-asv] benchmarks for any PR with the `benchmark` label applied. (The Benchmarks take some time, and will run on each subsequent push, but can be disabled by removing the label until you're ready to run them again.) 34 32 * `Geodjango Tests` - Runs PostGIS tests using more recent versions of geospatial libraries such as `GEOS` for any PR with the `geodjango` label applied. … … 47 45 48 46 A: `/var/log/jenkins/jenkins.log` may be many gigabytes in size. Remove that file and restart Jenkins with `service jenkins restart`. 47 48 Q: What could explain the build failing with Java library errors? 49 50 A: Check if any plugins need to be updated to a more recent version.