Testing¶
PyJulia can be tested by simply running tox.
$ tox
The full syntax for invoking tox is
$ [PYJULIA_TEST_REBUILD=yes] \
[PYJULIA_TEST_RUNTIME=<julia>] \
tox [options] [-- pytest options]
-
PYJULIA_TEST_REBUILD¶ Be careful using this environment variable! When it is set to
yes, yourPyCall.jlinstallation will be rebuilt using the Python interpreter used for testing. The test suite tries to build back to the original configuration but the precompilation would be in the stale state after the test. Note also that it does not work if you unconditionally setPYTHONenvironment variable in your Julia startup file.
-
PYJULIA_TEST_RUNTIME¶ juliaexecutable to be used for testing. See alsopytest --julia-runtime.
[-- pytest options]- Positional arguments after
--are passed topytest.
For example,
$ PYJULIA_TEST_REBUILD=yes \
PYJULIA_TEST_RUNTIME=~/julia/julia \
tox -e py37 -- -s
means to execute tests with
- PyJulia in shared-cache mode
juliaexecutable at~/julia/julia- Python 3.7
pytest’s capturing mode turned off