1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: fix pypy tests when run from another dir
Author: Alexandre Rossi <alexandre.rossi@gmail.com>
Source: upstream, https://github.com/unbit/uwsgi/commit/4616b8f
Bug: https://github.com/unbit/uwsgi/pull/2701
Last-Update: 2025-03-02
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/t/pypy/config.ini
+++ b/t/pypy/config.ini
@@ -3,5 +3,5 @@
need-app = false
pypy-lib = /usr/lib/x86_64-linux-gnu/libpypy3-c.so
pypy-home = /usr/lib/pypy3
-pypy-setup = plugins/pypy/pypy_setup.py
-pypy-wsgi-file = t/python/helloapp.py
+pypy-setup = %d../../plugins/pypy/pypy_setup.py
+pypy-wsgi-file = %d../python/helloapp.py
|