We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d3ff8c commit 1c42822Copy full SHA for 1c42822
recipe/build_py.sh
@@ -22,9 +22,9 @@ cmake ${CMAKE_ARGS} -GNinja .. \
22
ninja -v
23
cmake --build . --config Release --target install
24
25
-if [[ "${CONDA_BUILD_CROSS_COMPILATION:-}" != "1" || "${CROSSCOMPILING_EMULATOR:-}" != "" ]]; then
+if [[ "${CONDA_BUILD_CROSS_COMPILATION:-}" != "1" ]]; then
26
# Tests are not installed, so we run them during the build
27
# We run them directly via pytest so we detect if we are not compiling some required components
28
cd ..
29
- ${CROSSCOMPILING_EMULATOR} pytest -v -k "not (test_load_from_file or test_fixed_foot_detector)"
+ pytest -v -k "not (test_load_from_file or test_fixed_foot_detector)"
30
fi
0 commit comments