summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-11-21 22:39:34 +0100
committerGitHub <noreply@github.com>2023-11-21 22:39:34 +0100
commitf01dc3cc42ba2a27d5e23920d1b55f38737666da (patch)
tree3bfcda65d40ccf9bbac6536a5d8e5bb35128186f /.github
parent7dd3e694db17bc34f9ce73e516f853ebd16e19e7 (diff)
Added PyPy 3.10 to daily builds.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/schedule_tests.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/schedule_tests.yml b/.github/workflows/schedule_tests.yml
index edd4bd16be..228d52dc8a 100644
--- a/.github/workflows/schedule_tests.yml
+++ b/.github/workflows/schedule_tests.yml
@@ -37,6 +37,25 @@ jobs:
- name: Run tests
run: python tests/runtests.py -v2
+ pypy:
+ runs-on: ubuntu-latest
+ name: Ubuntu, SQLite, PyPy3.10
+ continue-on-error: true
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: pypy-3.10-nightly
+ cache: 'pip'
+ cache-dependency-path: 'tests/requirements/py3.txt'
+ - name: Install and upgrade packaging tools
+ run: python -m pip install --upgrade pip setuptools wheel
+ - run: python -m pip install -r tests/requirements/py3.txt -e .
+ - name: Run tests
+ run: python tests/runtests.py -v2
+
javascript-tests:
runs-on: ubuntu-latest
name: JavaScript tests