mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-25 15:19:58 +00:00
It's quite hard to get python2 to exit gracefully when the code was intended for python3, because the interpreter will SyntaxError before running a single line of code. Thankfully, the pytest developers put a version check in their .ini config, so that should gracefully handle both wrong-pytest-version and wrong-python-version. Also document the woes of trying to run the pytest version shipped by e.g. Debian or Ubuntu.
3 lines
26 B
INI
3 lines
26 B
INI
[pytest]
|
|
minversion = 6.0
|