aboutsummaryrefslogtreecommitdiff
path: root/test cases/python/1 basic
AgeCommit message (Collapse)AuthorFilesLines
2023-04-23fix python.version() not working in some casesCharles Brunet1-0/+3
import('python').find_installation('python').version() causes exception because of a missing initialization, when `find_installation()` receives a name or a path.
2021-09-29tests: take into account Debian Python pathsFilipe Laíns1-2/+2
Signed-off-by: Filipe Laíns <lains@riseup.net>
2020-07-12raise SystemExit() generally preferred to sys.exit(1)Michael Hirsch2-4/+2
2020-07-12c lang not needed for this testMichael Hirsch1-1/+2
2019-04-03modules/python: Report program found in find_installation()Dylan Baker1-1/+1
Currently find_installation is silent, which is pretty annoying. Let's log it.
2018-12-12tests: Add tests for the python moduleDylan Baker6-0/+53
This doesn't touch everything as it's just based on the python3 module tests, ported to the python module. It's still better than the one very basic test in the unit test module.