summaryrefslogtreecommitdiff
path: root/test cases/python3/4 custom target depends extmodule
AgeCommit message (Collapse)Author
2023-08-08tests: fix "4 custom target depends extmodule" with Python 3.8+ on WindowsChristoph Reiter
Since CPython 3.8 .pyd files no longer look in PATH for loading libraries, but require the DLL directory to be explicitely added via os.add_dll_directory(). This resulted in those tests failing with 3.8+ on Windows. Add the DLL build directory with os.add_dll_directory() to fix them. This was never noticed in CI because it only uses Python 3.7 and the MSYS2 CPython still used the old behaviour until now.
2021-03-04mass rewrite of string formatting to use f-strings everywhereEli Schwartz
performed by running "pyupgrade --py36-plus" and committing the results
2019-10-20Disable extension module tests with Python 3.8 and VS2015.Jussi Pakkanen
2017-12-02tests/python/4: Test that custom target depends add PATHNirbheek Chauhan