blob: a00a43f1968819ebd75f61b3272452a2f5c75cd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
check_rpython_annotations:
image: registry.heptapod.net/pypy/pypy/ci:v1
script: |
cd pypy/goal
python2 ../../rpython/bin/rpython --batch -O2 --annotate targetpypystandalone
# these tests are meant to be run only in the hpy branch, remove it once it
# has been merged
hpy_tests:
image: octobus/ci-for-pypy
script:
- pip install -r requirements.txt
- ./pytest.py pypy/module/_hpy_universal/
|