Refs #30950, Refs #35187 -- Added tests for byte-compiled Django to daily builds.

This commit is contained in:
Jon Janzen 2024-02-17 09:20:53 -08:00 committed by Mariusz Felisiak
parent c09e8f5fd8
commit 6feaad9113
1 changed files with 26 additions and 0 deletions

View File

@ -37,6 +37,32 @@ jobs:
- name: Run tests
run: python tests/runtests.py -v2
pyc-only:
runs-on: ubuntu-latest
name: Byte-compiled Django with no source files (only .pyc files)
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install libmemcached-dev for pylibmc
run: sudo apt-get install libmemcached-dev
- name: Install and upgrade packaging tools
run: python -m pip install --upgrade pip setuptools wheel
- run: python -m pip install .
- name: Prepare site-packages
run: |
SITE_PACKAGE_ROOT=$(python -c 'import site; print(site.getsitepackages()[0])')
echo $SITE_PACKAGE_ROOT
python -m compileall -b $SITE_PACKAGE_ROOT
find $SITE_PACKAGE_ROOT -name '*.py' -print -delete
- run: python -m pip install -r tests/requirements/py3.txt
- name: Run tests
run: python tests/runtests.py --verbosity=2
pypy-sqlite:
runs-on: ubuntu-latest
name: Ubuntu, SQLite, PyPy3.10